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