PointModel.fromJson constructor

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

Implementation

PointModel.fromJson(Map<String, dynamic> json) {
  width = json['Width'];
  child = json['Child'];
}