getListBlocks method

Future<XRPCResponse<Lists>> getListBlocks({
  1. int? limit,
  2. String? cursor,
})

Implementation

Future<core.XRPCResponse<Lists>> getListBlocks({
  int? limit,
  String? cursor,
}) async =>
    // ignore: deprecated_member_use_from_same_package
    await findBlockLists(
      limit: limit,
      cursor: cursor,
    );