ScrollableSheetPage constructor

ScrollableSheetPage(
  1. {required Widget header,
  2. required List<Widget> children,
  3. double? initialChildSize,
  4. double? minChildSize,
  5. double? maxChildSize,
  6. Shadow? shadow,
  7. Color? scaffoldBackgroundColor,
  8. Color? sheetBackgroundColor}
)

Implementation

ScrollableSheetPage({
  required this.header,
  required this.children,
  this.initialChildSize,
  this.minChildSize,
  this.maxChildSize,
  this.shadow,
  this.scaffoldBackgroundColor,
  this.sheetBackgroundColor,
});