ParamValue constructor

ParamValue(
  1. Object? _value, {
  2. bool keepAlive = false,
  3. int? cleanupAfter,
  4. ParamChanged? onChange,
  5. dynamic onDelete()?,
})

Implementation

ParamValue(
  this._value, {
  this.keepAlive = false,
  this.cleanupAfter,
  this.onChange,
  this.onDelete,
});