Path.fromJSON constructor

Path.fromJSON(
  1. dynamic json
)

Implementation

Path.fromJSON(json) : super.fromJSON(json) {
  type = 'Path';
  currentPoint.fromArray(json["currentPoint"]);
}