DefaultDivider.fromJson constructor

DefaultDivider.fromJson(
  1. dynamic json
)

Implementation

DefaultDivider.fromJson(dynamic json) {
  _borderRadius = json['borderRadius'];
  _border = json['border'] != null ? Border.fromJson(json['border']) : null;
  _bgColor = json['bgColor'];
  _bgColorOpacity = json['bgColorOpacity'];
  _height = json['height'];
}