CustomHeadingText constructor

const CustomHeadingText({
  1. Key? key,
  2. required String title,
  3. required String subtitle,
  4. TextStyle? titleStyle,
  5. TextStyle? subtitleStyle,
})

Implementation

const CustomHeadingText({super.key,
  required this.title,
  required this.subtitle,
  this.titleStyle,
  this.subtitleStyle,
});