constraint property
OptionConstraint?
get
constraint
Constraint on possible values.
Implementation
OptionConstraint? get constraint =>
_wrapped.constraint?.let(OptionConstraint.fromJS);
set
constraint
(OptionConstraint? v)
Implementation
set constraint(OptionConstraint? v) {
_wrapped.constraint = v?.toJS;
}