CommonBottomSheet<T> constructor

const CommonBottomSheet<T>({
  1. Key? key,
  2. required T title,
  3. required Widget contentWidget,
  4. Widget? operatorWidget,
  5. double padding = 16,
  6. bool expanded = false,
  7. EdgeInsets? bottomWidgetPadding,
})

Implementation

const CommonBottomSheet({
  Key? key,
  required this.title,
  required this.contentWidget,
  this.operatorWidget,
  this.padding = 16,
  this.expanded = false,
  this.bottomWidgetPadding,
}) : super(key: key);