FlickerTitle constructor

FlickerTitle({
  1. Key? key,
  2. required String labelText,
  3. Color? color,
})

Implementation

FlickerTitle({
  Key? key,
  required this.labelText,
  this.color,
}) : super(key: key);