sendUserOperation method
- UserOperation op,
- {String? id}
override
Signs and sends a user operation to the bundler.
op
: The UserOperation.
Returns the UserOperationResponse
of the transaction.
Implementation
@override
Future<UserOperationResponse> sendUserOperation(UserOperation op,
{String? id}) async {
return signUserOperation(op, id: id).then(sendSignedUserOperation);
}