fromJson static method

MPVenueInfo? fromJson(
  1. dynamic json
)

Implementation

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