send abstract method

Future<UserOperationResponse> send(
  1. EthereumAddress recipient,
  2. EtherAmount amount
)

Transfers native tokens to another recipient.

  • recipient: The address of the recipient.
  • amount: The amount to send.

Returns the UserOperationResponse of the transaction.

Implementation

Future<UserOperationResponse> send(
  EthereumAddress recipient,
  EtherAmount amount,
);