SheetConfig constructor

SheetConfig({
  1. required String title,
  2. String? description,
  3. BloomNode? body,
  4. String side = 'right',
  5. bool showCloseButton = true,
  6. VoidCallback? onClose,
})

Implementation

SheetConfig({
  required this.title,
  this.description,
  this.body,
  this.side = 'right',
  this.showCloseButton = true,
  this.onClose,
});