ListOutput<T, ARG> constructor

ListOutput<T, ARG>({
  1. required List<T> seedValue,
  2. required String semantics,
  3. bool sync = true,
  4. bool isBehavior = true,
  5. bool printLog = true,
  6. int? forceCapacity,
  7. required FetchCallback<List<T>, ARG?> fetch,
  8. List<T> onReset()?,
  9. PersistConfig<List<T>>? persistConfig,
  10. bool skipError = false,
})

Implementation

ListOutput({
  required super.seedValue,
  required super.semantics,
  super.sync = true,
  super.isBehavior = true,
  super.printLog = true,
  int? forceCapacity,
  required super.fetch,
  super.onReset,
  super.persistConfig,
  super.skipError,
}) {
  _forceCapacity = forceCapacity;
}