OffsetIteratorState<T> constructor

const OffsetIteratorState<T>({
  1. dynamic acc,
  2. Iterable<T>? chunk = const [],
  3. bool hasMore = true,
  4. dynamic error,
  5. StackTrace? stackTrace,
})

Implementation

const OffsetIteratorState({
  this.acc,
  this.chunk = const [],
  this.hasMore = true,
  this.error,
  this.stackTrace,
});