ElginResponse.fromJson constructor

ElginResponse.fromJson(
  1. String value
)

Implementation

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