DataFinderAll<T extends DataModelMixin<T>> typedef

DataFinderAll<T extends DataModelMixin<T>> = Future<List<T>> Function({bool background, Map<String, String>? headers, DataRequestLabel? label, OnErrorAll<T>? onError, OnSuccessAll<T>? onSuccess, Map<String, dynamic>? params, bool remote, bool syncLocal})

Implementation

typedef DataFinderAll<T extends DataModelMixin<T>> = Future<List<T>> Function({
  bool remote,
  bool background,
  Map<String, dynamic>? params,
  Map<String, String>? headers,
  bool syncLocal,
  OnSuccessAll<T>? onSuccess,
  OnErrorAll<T>? onError,
  DataRequestLabel? label,
});