fromJson static method
Implementation
static FireblocksError? fromJson(String? json) {
if (json == null) {
return null;
}
Map<String, dynamic> data = jsonDecode(json);
return fromJsonMap(data);
}
static FireblocksError? fromJson(String? json) {
if (json == null) {
return null;
}
Map<String, dynamic> data = jsonDecode(json);
return fromJsonMap(data);
}