fromJson static method

FireblocksError? fromJson(
  1. String? json
)

Implementation

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