BottomSheet constructor

const BottomSheet({
  1. required Text optionsHeading,
  2. PostType? selectedOption,
  3. Color? iconColor,
  4. Color? iconBackgroundColor,
  5. TextStyle? headingStyle,
  6. TextStyle? descriptionStyle,
  7. List<PostType>? postType,
  8. List<MoreOptions>? moreOptions,
  9. BuildContext? context,
  10. int? imagesSize,
  11. dynamic notifyImageList(
    1. List<CroppedFile>? imageList
    )?,
  12. Key? key,
})

Implementation

const BottomSheet({
  required this.optionsHeading,
  this.selectedOption,
  this.iconColor,
  this.iconBackgroundColor,
  this.headingStyle,
  this.descriptionStyle,
  this.postType,
  this.moreOptions,
  this.context,
  this.imagesSize,
  this.notifyImageList,
  final Key? key,
}) : super(key: key);