BackdropSubHeader constructor

const BackdropSubHeader({
  1. Key? key,
  2. required Widget title,
  3. Widget? divider,
  4. EdgeInsets padding = const EdgeInsets.symmetric(vertical: 12.0, horizontal: 16.0),
  5. bool automaticallyImplyLeading = false,
  6. bool automaticallyImplyTrailing = true,
  7. Widget? leading,
  8. Widget? trailing,
})

Creates a BackdropSubHeader instance.

The title argument must not be null.

Implementation

const BackdropSubHeader({
  Key? key,
  required this.title,
  this.divider,
  this.padding = const EdgeInsets.symmetric(vertical: 12.0, horizontal: 16.0),
  this.automaticallyImplyLeading = false,
  this.automaticallyImplyTrailing = true,
  this.leading,
  this.trailing,
}) : super(key: key);