getAccountBlocksByHeight method

Future<AccountBlockList> getAccountBlocksByHeight(
  1. Address address, [
  2. int height = 1,
  3. int count = rpcMaxPageSize
])

Implementation

Future<AccountBlockList> getAccountBlocksByHeight(Address address,
    [int height = 1, int count = rpcMaxPageSize]) async {
  var response = await client.sendRequest(
      'ledger.getAccountBlocksByHeight', [address.toString(), height, count]);
  return AccountBlockList.fromJson(response!);
}