initStream abstract method

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

Implementation

dynamic initStream({
  required String collectionId,
  required Map<String, dynamic> where,
  required String orderBy,
  bool descending = true,
  int? limit, // 페이지 크기
  bool hasPage = false,
});