streamData method
Widget
streamData({
- required String collectionId,
- required Widget consumerFunc(),
- required Map<
String, dynamic> where, - required String orderBy,
- bool descending = true,
- int? limit,
- bool hasPage = false,
override
Implementation
@override
Widget streamData({
required String collectionId,
required Widget Function(List<Map<String, dynamic>> resultList) consumerFunc,
required Map<String, dynamic> where,
required String orderBy,
bool descending = true,
int? limit, // 페이지 크기
bool hasPage = false,
}) {
// appwrite 에서는 일단은 ...사용되지 않는다.
return const Center(child: Text('Appwrite does not support streamData() yet!'));
}