fromMap static method
override
    Construct from Map.
Implementation
static VectorPathCommand? fromMap(Map<String, dynamic>? _map) {
  if (_map == null) return null;
  var _ = _map["@type"];
  switch (_) {
    case 'vectorPathCommandCubicBezierCurve':
      return VectorPathCommandCubicBezierCurve.fromMap(_map);
    case 'vectorPathCommandLine':
      return VectorPathCommandLine.fromMap(_map);
    case null:
    default:
      return null;
  }
}