send<T> abstract method
Sends a transaction to the bundler RPC.
function
: The method to call.params
: The parameters for the request (optional).
Returns a Future that completes with an RPC response of a generic type T
.
Implementation
Future<T> send<T>(String function, [List<dynamic>? params]);