GridController<T> constructor

GridController<T>({
  1. required Future<List> pageFetcher(),
  2. Duration? duration,
})

Implementation

GridController({required this.pageFetcher, this.duration}) {
  if (duration == null) this.duration = Duration(seconds: 1);
}