toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['sender'] = this.sender;
  data['nonce'] = this.nonce;
  data['initCode'] = this.initCode;
  data['callData'] = this.callData;
  data['callGasLimit'] = this.callGasLimit;
  data['verificationGasLimit'] = this.verificationGasLimit;
  data['preVerificationGas'] = this.preVerificationGas;
  data['maxFeePerGas'] = this.maxFeePerGas;
  data['maxPriorityFeePerGas'] = this.maxPriorityFeePerGas;
  data['paymasterAndData'] = this.paymasterAndData;
  data['signature'] = this.signature;
  return data;
}