v1EthSendRawTransactionResult.fromJson constructor

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

Implementation

factory v1EthSendRawTransactionResult.fromJson(Map<String, dynamic> json) {
  final _transactionHash = json['transactionHash'] as String;
  return v1EthSendRawTransactionResult(
    transactionHash: _transactionHash,
  );
}