NumberProperty constructor

const NumberProperty({
  1. double? min,
  2. double? max,
  3. double? softMin,
  4. double? softMax,
  5. double? step,
  6. String? group,
  7. List<String> formerNames = const [],
  8. bool transient = false,
  9. List<PropertyConstraint<num>> extra = const [],
})

Implementation

const NumberProperty({
  this.min,
  this.max,
  this.softMin,
  this.softMax,
  this.step,
  super.group,
  super.formerNames,
  super.transient,
  this.extra = const [],
});