OptionalIntIO constructor

OptionalIntIO({
  1. int? seedValue,
  2. required String semantics,
  3. bool sync = true,
  4. bool isBehavior = true,
  5. bool acceptEmpty = true,
  6. bool isDistinct = false,
  7. bool printLog = true,
  8. int? min,
  9. int? max,
  10. int? remainder,
  11. FetchCallback<int, dynamic>? fetch,
  12. int? onReset()?,
  13. PersistConfig<int?>? persistConfig,
})

Implementation

OptionalIntIO({
  super.seedValue,
  required super.semantics,
  super.sync,
  super.isBehavior,
  super.acceptEmpty,
  super.isDistinct,
  super.printLog,
  int? min,
  int? max,
  int? remainder,
  FetchCallback<int, dynamic>? super.fetch,
  super.onReset,
  super.persistConfig,
}) {
  _min = min;
  _max = max;
  _remainder = remainder;
}