FlickerSubTitle constructor

FlickerSubTitle({
  1. Key? key,
  2. required String labelText,
  3. EdgeInsetsGeometry padding = const EdgeInsets.only(top: 24.0),
  4. Color? color,
})

Implementation

FlickerSubTitle({
  Key? key,
  required this.labelText,
  this.padding = const EdgeInsets.only(
    top: 24.0,
  ),
  this.color,
}) : super(key: key);