CupertinoBottomSheetAppBar constructor

const CupertinoBottomSheetAppBar({
  1. Key? key,
  2. required String title,
  3. Widget? trailing,
  4. Widget? leading,
  5. TextStyle? headerStyle,
  6. int maxLines = 1,
  7. EdgeInsets? padding = const EdgeInsets.symmetric(horizontal: 8.0),
})

Implementation

const CupertinoBottomSheetAppBar({
  super.key,
  required this.title,
  this.trailing,
  this.leading,
  this.headerStyle,
  this.maxLines = 1,
  this.padding = const EdgeInsets.symmetric(
    horizontal: 8.0,
  ),
});