fromJson static method
Implementation
static MPVenueInfo? fromJson(json) => json != null && json != "null"
? MPVenueInfo._fromJson(json is String ? jsonDecode(json) : json)
: null;
static MPVenueInfo? fromJson(json) => json != null && json != "null"
? MPVenueInfo._fromJson(json is String ? jsonDecode(json) : json)
: null;