Attr.fromJson constructor

Attr.fromJson(
  1. Map<String, dynamic> json
)

Implementation

Attr.fromJson(Map<String, dynamic> json) {
  x = json['x'];
  y = json['y'];
  h = json['h'];
  w = json['w'];
}