CustomTextAppBar constructor

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

Implementation

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