InitialFeedState<T> constructor

InitialFeedState<T>({
  1. List items = const [],
  2. String? pageToken = null,
  3. bool hasMore = false,
})

Implementation

InitialFeedState({
  this.items = const [],
  this.pageToken = null,
  this.hasMore = false
});