VectorPathCommandLine.fromJson constructor

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

Parse from a json

Implementation

factory VectorPathCommandLine.fromJson(Map<String, dynamic> json) => VectorPathCommandLine(
  endPoint: Point.fromJson(json['end_point']),
);