SheetTopBar constructor

SheetTopBar({
  1. Key? key,
  2. String title = "",
  3. IconData? icon,
  4. Widget? leading,
  5. Widget? trailing,
  6. dynamic leadingOnTap()?,
  7. required Widget child,
})

Implementation

SheetTopBar({
  Key? key,
  this.title = "",
  this.icon,
  this.leading,
  this.trailing,
  this.leadingOnTap,
  required this.child,
}) : super(key: key);