fromJson static method

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

Implementation

static VectorPathCommandLine? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return VectorPathCommandLine(
    endPoint: Point.fromJson(tdMapFromJson(json['end_point'])),
  );
}