TitleHeader constructor

const TitleHeader({
  1. Key? key,
  2. required String title,
  3. required String subTitle,
  4. TextStyle titleStyle = const TextStyle(fontFamily: 'Roboto'),
  5. TextStyle subTitleStyle = const TextStyle(fontFamily: 'Roboto'),
  6. double logoHeight = 45,
  7. double logoWidth = 45,
})

Implementation

const TitleHeader(
    {super.key,
    required this.billerLogo,
    required this.title,
    required this.subTitle,
    this.titleStyle = const TextStyle(fontFamily: 'Roboto'),
    this.subTitleStyle = const TextStyle(fontFamily: 'Roboto'),
    this.logoHeight = 45,
    this.logoWidth = 45});