v1EthSendTransactionStatus.fromJson constructor
Implementation
factory v1EthSendTransactionStatus.fromJson(Map<String, dynamic> json) {
final _txHash = json['txHash'] as String?;
return v1EthSendTransactionStatus(
txHash: _txHash,
);
}
factory v1EthSendTransactionStatus.fromJson(Map<String, dynamic> json) {
final _txHash = json['txHash'] as String?;
return v1EthSendTransactionStatus(
txHash: _txHash,
);
}