InputGroup.fromJson constructor

InputGroup.fromJson(
  1. dynamic json
)

Implementation

InputGroup.fromJson(dynamic json) {
  _bgColor = json['bgColor'];
  _bgColorOpacity = json['bgColorOpacity'];
  _border = json['border'] != null ? Border.fromJson(json['border']) : null;
  _borderBottom =
  json['borderBottom'] != null ? BorderBottom.fromJson(json['borderBottom']) : null;
  _borderRadius = json['borderRadius'];
}