OudsSheetsBottom constructor

const OudsSheetsBottom({
  1. Key? key,
  2. required String title,
  3. required Widget sheetContent,
  4. dynamic onExpansionChanged(
    1. bool
    )?,
})

Creates an OUDS Sheets Bottom.

Implementation

const OudsSheetsBottom({
  super.key,
  required this.title,
  required this.sheetContent,
  this.onExpansionChanged,
});