BottomSheetView constructor

BottomSheetView({
  1. Key? key,
  2. required String title,
  3. required List<String> options,
  4. required dynamic didOptionSelected(
    1. String option
    ),
  5. TextStyle? titleTextStyle,
  6. TextStyle? optionTextStyle,
  7. TextStyle? cancelTextStyle,
})

Implementation

BottomSheetView({
  Key? key,
  required this.title,
  required this.options,
  required this.didOptionSelected,
  this.titleTextStyle,
  this.optionTextStyle,
  this.cancelTextStyle,
}) : super(key: key);