MainGridComponentOptions constructor

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

Constructs a MainGridComponentOptions object.

Implementation

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