FormControl.fromJson constructor

FormControl.fromJson(
  1. dynamic json
)

Implementation

FormControl.fromJson(dynamic json) {
  _border = json['border'] != null ? Border.fromJson(json['border']) : null;
  _borderRadius = json['borderRadius'];
  _fontSize = json['fontSize'];
  _fontWeight = json['fontWeight'];
  _color = json['color'];
  _colorOpacity = json['colorOpacity'];
}