CornerPoint.fromJson constructor

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

Implementation

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