count method

  1. @override
Future<int> count({
  1. String? userId,
  2. Where? where,
})
override

Returns the number of entries in the repository.

Implementation

@override
Future<int> count({String? userId, Where? where}) async {
  return 0;
}