FormFieldLabel constructor

const FormFieldLabel({
  1. Key? key,
  2. required String text,
  3. bool isUpper = true,
  4. TextAlign textAlign = TextAlign.left,
  5. Color? color,
  6. FontWeight? fontWeight,
  7. double fontSize = 18.0,
})

Implementation

const FormFieldLabel(
    {Key? key,
    required this.text,
    this.isUpper = true,
    this.textAlign = TextAlign.left,
    this.color,
    this.fontWeight,
    this.fontSize = 18.0})
    : super(key: key);