getBalance method

Future<BigInt> getBalance([
  1. dynamic blockTag
])

Returns the balance of this wallet at blockTag.

Implementation

Future<BigInt> getBalance([dynamic blockTag]) async => _call<BigInt>(
      'getBalance',
      blockTag != null ? [blockTag] : [],
    );