getLatestBlock method

Future<LatestBlock> getLatestBlock({
  1. required String address,
  2. dynamic hint,
})

Get latest block by address and return it or throw error

Implementation

Future<LatestBlock> getLatestBlock({required String address, dynamic hint}) =>
    bridge.getLatestBlockMethodGqlTransportImpl(
      that: this,
      address: address,
    );