getIds method

Future<FfiListFfiString> getIds(
  1. int offset,
  2. int limit
)

get the activity ids from offset to limit for this activities listing

Implementation

Future<FfiListFfiString> getIds(int offset, int limit) {
  final tmp1 = offset;
  final tmp3 = limit;
  var tmp0 = 0;
  var tmp2 = 0;
  var tmp4 = 0;
  tmp0 = _box.borrow();
  tmp2 = tmp1;
  tmp4 = tmp3;
  final tmp5 = _api._activitiesGetIds(tmp0, tmp2, tmp4);
  final tmp7 = tmp5;
  final ffi.Pointer<ffi.Void> tmp7_0 = ffi.Pointer.fromAddress(tmp7);
  final tmp7_1 = _Box(_api, tmp7_0, "__Activities_get_ids_future_drop");
  tmp7_1._finalizer = _api._registerFinalizer(tmp7_1);
  final tmp6 = _nativeFuture(tmp7_1, _api.__activitiesGetIdsFuturePoll);
  return tmp6;
}