controllers method

Future<bool> controllers(
  1. EthereumAddress $param0, {
  2. BlockNum? atBlock,
})

The optional atBlock parameter can be used to view historical data. When set, the function will be evaluated in the specified block. By default, the latest on-chain block will be used.

Implementation

Future<bool> controllers(_i1.EthereumAddress $param0,
    {_i1.BlockNum? atBlock}) async {
  final function = self.abi.functions[1];
  assert(checkSignature(function, 'da8c229e'));
  final params = [$param0];
  final response = await read(function, params, atBlock);
  return (response[0] as bool);
}