MainGridComponentOptions constructor
      const
      MainGridComponentOptions({ 
    
- required Color backgroundColor,
- required List<Widget> children,
- required double mainSize,
- required double height,
- required double width,
- bool showAspect = true,
- Color timeBackgroundColor = Colors.transparent,
- bool showTimer = true,
- required String meetingProgressTime,
- Decoration? decoration,
- EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
- Clip clipBehavior = Clip.none,
- MeetingProgressTimerOptions? timerOptions,
- MeetingProgressTimerType? timerBuilder,
- MainGridComponentContainerBuilder? containerBuilder,
- MainGridComponentChildrenBuilder? childrenBuilder,
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,
  this.decoration,
  this.padding,
  this.margin,
  this.clipBehavior = Clip.none,
  this.timerOptions,
  this.timerBuilder,
  this.containerBuilder,
  this.childrenBuilder,
});