IntProperty constructor

const IntProperty({
  1. int? min,
  2. int? max,
  3. String? group,
  4. List<String> formerNames = const [],
  5. bool transient = false,
  6. List<PropertyConstraint<int>> extra = const [],
})

Implementation

const IntProperty({
  this.min,
  this.max,
  super.group,
  super.formerNames,
  super.transient,
  this.extra = const [],
});