BorderBottom.fromJson constructor

BorderBottom.fromJson(
  1. dynamic json
)

Implementation

BorderBottom.fromJson(dynamic json) {
  _type = json['type'];
  _color = json['color'];
  _size = json['size'];
  _opacity = json['opacity'];
}