ElginTransactionResponse.fromJson constructor

ElginTransactionResponse.fromJson(
  1. String value
)

Implementation

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