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,
  9. Decoration? decoration,
  10. EdgeInsetsGeometry? padding,
  11. EdgeInsetsGeometry? margin,
  12. Clip clipBehavior = Clip.none,
  13. MeetingProgressTimerOptions? timerOptions,
  14. MeetingProgressTimerType? timerBuilder,
  15. OtherGridComponentContainerBuilder? containerBuilder,
  16. OtherGridComponentChildrenBuilder? childrenBuilder,
})

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,
  this.decoration,
  this.padding,
  this.margin,
  this.clipBehavior = Clip.none,
  this.timerOptions,
  this.timerBuilder,
  this.containerBuilder,
  this.childrenBuilder,
});