getLatestBlock method

Future<JSON> getLatestBlock()

Implementation

Future<JSON> getLatestBlock() async {
  final result = await getCall<JSON>(
    getBlockEndpoint(start: 0, limit: 1),
  );

  return result;
}