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