MeetingProgressTimerOptions constructor

MeetingProgressTimerOptions(
  1. {required String meetingProgressTime,
  2. Color initialBackgroundColor = Colors.green,
  3. String position = 'topLeft',
  4. TextStyle? textStyle,
  5. bool showTimer = true}
)

Implementation

MeetingProgressTimerOptions({
  required this.meetingProgressTime,
  this.initialBackgroundColor = Colors.green,
  this.position = 'topLeft',
  this.textStyle,
  this.showTimer = true,
});