OptionalInput<T> constructor

OptionalInput<T>({
  1. T? seedValue,
  2. required String semantics,
  3. bool sync = true,
  4. bool isBehavior = true,
  5. bool printLog = true,
  6. bool acceptEmpty = true,
  7. bool isDistinct = false,
  8. T? onReset()?,
  9. PersistConfig<T?>? persistConfig,
})

Implementation

OptionalInput({
  super.seedValue,
  required super.semantics,
  super.sync,
  super.isBehavior,
  super.printLog,
  super.acceptEmpty,
  super.isDistinct,
  super.onReset,
  super.persistConfig,
});