CustomTextAppBar constructor

const CustomTextAppBar({
  1. Key? key,
  2. required String text,
  3. required Color fontColor,
})

Implementation

const CustomTextAppBar({
  Key? key,
  required this.text,
  required this.fontColor,
}) : super(
        key: key,
      );