CornerPoint.fromJson constructor

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

Implementation

factory CornerPoint.fromJson(Map<String, dynamic> json) => CornerPoint(x: json["x"], y: json["y"]);