put abstract method

Future<void> put(
  1. Iterable<T> items, {
  2. int compare(
    1. T,
    2. T
    )?,
})

Adds the provided items to this PageProvider.

Implementation

Future<void> put(Iterable<T> items, {int Function(T, T)? compare});