call method

Future<String> call(
  1. TransactionRequest request
)

Returns the result of calling using the TransactionRequest, with this account address being used as the from field.

Implementation

Future<String> call(TransactionRequest request) =>
    _call<String>('call', [request]);