FormControl constructor

FormControl({
  1. Border? border,
  2. int? borderRadius,
  3. int? fontSize,
  4. int? fontWeight,
  5. String? color,
  6. int? colorOpacity,
})

Implementation

FormControl({
  Border? border,
  int? borderRadius,
  int? fontSize,
  int? fontWeight,
  String? color,
  int? colorOpacity,
}) {
  _border = border;
  _borderRadius = borderRadius;
  _fontSize = fontSize;
  _fontWeight = fontWeight;
  _color = color;
  _colorOpacity = colorOpacity;
}