ElginResponse.fromJson constructor
ElginResponse.fromJson(
- String value
Implementation
factory ElginResponse.fromJson(String value) {
final decoded = json.decode(value);
return ElginResponse.fromMap(decoded);
}