getBalance method

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

Returns the balance of this wallet at blockTag.

Implementation

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