fromJson static method
Attempts to build a MPRouteProperty from a JSON object, this method will decode the object if needed
Implementation
static MPRouteProperty? fromJson(json) => json != null && json != "null"
? MPRouteProperty._fromJson(json is String ? jsonDecode(json) : json)
: null;