v1EthSendRawTransactionIntent.fromJson constructor

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

Implementation

factory v1EthSendRawTransactionIntent.fromJson(Map<String, dynamic> json) {
  final _signedTransaction = json['signedTransaction'] as String;
  final _caip2 = json['caip2'] as String;
  return v1EthSendRawTransactionIntent(
    signedTransaction: _signedTransaction,
    caip2: _caip2,
  );
}