read method

  1. @protected
Future<List> read(
  1. EthereumAddress? sender,
  2. ContractFunction function,
  3. List params,
  4. BlockNum? atBlock,
)

Implementation

@protected
Future<List<dynamic>> read(
  EthereumAddress? sender,
  ContractFunction function,
  List<dynamic> params,
  BlockNum? atBlock,
) {
  return client.call(
    sender: sender,
    contract: self,
    function: function,
    params: params,
    atBlock: atBlock,
  );
}