fromJson static method
Inherited by: VectorPathCommandCubicBezierCurve VectorPathCommandLine
Implementation
static VectorPathCommandLine? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return VectorPathCommandLine(
endPoint: Point.fromJson(tdMapFromJson(json['end_point'])),
);
}