getAll<T> abstract method

Future<Result<List<T>>> getAll<T>({
  1. int? limit,
  2. String? orderByField,
  3. bool descending = false,
  4. Object? field,
  5. bool? isEqualTo,
  6. bool? isNotEqualTo,
  7. bool? isLessThan,
  8. bool? isLessThanOrEqualTo,
  9. bool? isGreaterThan,
  10. bool? isGreaterThanOrEqualTo,
  11. Object? arrayContains,
  12. List<Object?>? arrayContainsAny,
  13. List<Object?>? whereIn,
  14. List<Object?>? whereNotIn,
  15. bool? isNull,
})

Implementation

Future<Result<List<T>>> getAll<T>({
  final int? limit,
  final String? orderByField,
  final bool descending = false,
  final Object? field,
  final bool? isEqualTo,
  final bool? isNotEqualTo,
  final bool? isLessThan,
  final bool? isLessThanOrEqualTo,
  final bool? isGreaterThan,
  final bool? isGreaterThanOrEqualTo,
  final Object? arrayContains,
  final List<Object?>? arrayContainsAny,
  final List<Object?>? whereIn,
  final List<Object?>? whereNotIn,
  final bool? isNull,
});