v1EthSendTransactionResult.fromJson constructor

v1EthSendTransactionResult.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory v1EthSendTransactionResult.fromJson(Map<String, dynamic> json) {
  final _sendTransactionStatusId = json['sendTransactionStatusId'] as String;
  return v1EthSendTransactionResult(
    sendTransactionStatusId: _sendTransactionStatusId,
  );
}