BottomsheetContainer constructor

const BottomsheetContainer({
  1. Key? key,
  2. required BottomsheetColorConfig colorConfig,
  3. required Widget child,
  4. bool showTopRadius = true,
})

Implementation

const BottomsheetContainer({
  super.key,
  required this.colorConfig,
  required this.child,
  this.showTopRadius = true,
});