ZetaBottomSheet constructor

const ZetaBottomSheet({
  1. Key? key,
  2. bool? rounded,
  3. String? title,
  4. Widget? body,
  5. bool centerTitle = true,
})

Constructor for ZetaBottomSheet.

Implementation

const ZetaBottomSheet({
  super.key,
  super.rounded,
  this.title,
  this.body,
  this.centerTitle = true,
});