MuteInfoResponse constructor Null safety

MuteInfoResponse(
  1. {required bool isMuted,
  2. String? description,
  3. int? startAt,
  4. int? endAt,
  5. int? remainingDuration}
)

Implementation

MuteInfoResponse({
  required this.isMuted,
  this.description,
  this.startAt,
  this.endAt,
  this.remainingDuration,
});