HeadingGroup constructor

const HeadingGroup({
  1. Key? key,
  2. String title = 'Welcome to',
  3. String subtitle = 'Onairos',
  4. bool isDark = false,
  5. TextAlign textAlign = TextAlign.center,
})

Implementation

const HeadingGroup({
  Key? key,
  this.title = 'Welcome to',
  this.subtitle = 'Onairos',
  this.isDark = false,
  this.textAlign = TextAlign.center,
}) : super(key: key);