AngleProperty constructor

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

Implementation

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