initStream method

dynamic initStream({
  1. required Map<String, dynamic> where,
  2. required String orderBy,
  3. bool descending = true,
  4. int? limit,
})

Implementation

dynamic initStream({
  required Map<String, dynamic> where,
  required String orderBy,
  bool descending = true,
  int? limit, // 페이지 크기
}) {
  return HycopFactory.dataBase!.initStream(
    collectionId: collectionId,
    where: where,
    orderBy: orderBy,
    descending: descending,
    limit: limit,
  );
}