BottomSheetItem<T> constructor

BottomSheetItem<T>({
  1. T? value,
  2. required String name,
  3. IconData? icon,
  4. Color? itemColor,
  5. Widget? suffix,
  6. bool bold = false,
})

Implementation

BottomSheetItem({
  this.value,
  required this.name,
  this.icon,
  this.itemColor,
  this.suffix,
  this.bold = false,
});