FormHeader constructor

const FormHeader({
  1. Widget? title,
  2. Widget? subtitle,
  3. String? titleText,
  4. String? subtitleText,
  5. Widget? trailing,
  6. Key? key,
})

Implementation

const FormHeader({
  this.title,
  this.subtitle,
  this.titleText,
  this.subtitleText,
  this.trailing,
  super.key,
});