Headline.h2 constructor

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

H2 headline

Implementation

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