DefaultBottomSheet constructor

const DefaultBottomSheet({
  1. dynamic key,
  2. required dynamic content,
  3. dynamic sheetDecoration,
  4. dynamic header,
  5. bool isCupertino = false,
  6. double sheetHeight = 300.0,
})

Implementation

const DefaultBottomSheet({
  super.key,
  required this.content,
  this.sheetDecoration,
  this.header,
  this.isCupertino = false,
  this.sheetHeight = 300.0,
});