Headline constructor

const Headline(
  1. String content, {
  2. HeadlineLevel level = HeadlineLevel.h1,
  3. String? color,
  4. String align = 'left',
  5. String? className,
  6. bool gradient = false,
  7. Key? key,
})

Implementation

const Headline(
  this.content, {
  this.level = HeadlineLevel.h1,
  this.color,
  this.align = 'left',
  this.className,
  this.gradient = false,
  super.key,
});