TitleDefinition constructor

const TitleDefinition({
  1. required String title,
  2. Icon? icon,
  3. TextStyle? textStyle,
  4. Color? backgroundColor,
  5. Color? foregroundColor,
})

Implementation

const TitleDefinition({
  required this.title,
  this.icon,
  this.textStyle,
  this.backgroundColor,
  this.foregroundColor,
});