retrieveAll abstract method
Retrieves a list of items.
query: Optional query parameters for filtering or pagination. Example:retrieveAll(query: {'page': 1, 'limit': 10})
Returns a Future that resolves with the list of data.
Implementation
Future<dynamic> retrieveAll({Map query = const {}});