Headline constructor

const Headline({
  1. Key? key,
  2. String? headline,
  3. required Widget child,
  4. Widget? subtitle,
  5. Color? background,
  6. EdgeInsets padding = Block.defaultPadding,
  7. bool top = true,
  8. bool bottom = true,
})

Implementation

const Headline({
  super.key,
  this.headline,
  required this.child,
  this.subtitle,
  this.background,
  this.padding = Block.defaultPadding,
  this.top = true,
  this.bottom = true,
});