UserOperation constructor

UserOperation({
  1. String? sender,
  2. int? nonce,
  3. String? initCode,
  4. String? callData,
  5. int? callGasLimit,
  6. int? verificationGasLimit,
  7. int? preVerificationGas,
  8. int? maxFeePerGas,
  9. int? maxPriorityFeePerGas,
  10. String? paymasterAndData,
  11. String? signature,
})

Implementation

UserOperation(
    {this.sender,
    this.nonce,
    this.initCode,
    this.callData,
    this.callGasLimit,
    this.verificationGasLimit,
    this.preVerificationGas,
    this.maxFeePerGas,
    this.maxPriorityFeePerGas,
    this.paymasterAndData,
    this.signature});