Point.fromJson constructor

Point.fromJson(
  1. Map json
)

Implementation

Point.fromJson(Map<dynamic, dynamic> json)
    : x = json['x'],
      y = json['y'];