AppRemoteSearchListItemsFetcher<T> constructor

AppRemoteSearchListItemsFetcher<T>(
  1. Future<List<T>> getItems(
    1. String search
    ), {
  2. String? valueKey,
})

Implementation

AppRemoteSearchListItemsFetcher(
  this.getItems, {
  String? valueKey,
}) : _valueKey = valueKey ?? math.Random().nextDouble().toString();