InfoHeader constructor

const InfoHeader({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. Widget? trailing,
  5. TextStyle? titleStyle,
  6. TextStyle? subtitleStyle,
  7. Color? backgroundColor,
  8. EdgeInsetsGeometry? padding,
})

Implementation

const InfoHeader({
  super.key,
  required this.title,
  this.subtitle,
  this.trailing,
  this.titleStyle,
  this.subtitleStyle,
  this.backgroundColor,
  this.padding,
});