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