TSideSheet constructor

const TSideSheet(
  1. Widget child, {
  2. Key? key,
  3. Widget? header,
  4. Widget? footer,
  5. String? title,
  6. bool? showCloseButton,
  7. VoidCallback? onClose,
  8. double width = 400,
  9. bool fromLeft = false,
})

Implementation

const TSideSheet(
  this.child, {
  super.key,
  this.header,
  this.footer,
  this.title,
  this.showCloseButton,
  this.onClose,
  this.width = 400,
  this.fromLeft = false,
});