OtherGridComponentOptions constructor

const OtherGridComponentOptions({
  1. required Color backgroundColor,
  2. required List<Widget> children,
  3. required double width,
  4. required double height,
  5. bool showAspect = true,
  6. required Color timeBackgroundColor,
  7. required bool showTimer,
  8. required String meetingProgressTime,
})

Implementation

const OtherGridComponentOptions({
  required this.backgroundColor,
  required this.children,
  required this.width,
  required this.height,
  this.showAspect = true,
  required this.timeBackgroundColor,
  required this.showTimer,
  required this.meetingProgressTime,
});