nullable property
bool?
get
nullable
Return nothing from the input value
property when the user hasn't entered anything. If this is false,
the mask might be returned.
@default true
Implementation
_i2.bool? get nullable => _i4.getProperty(
this,
'nullable',
);
set
nullable
(bool? value)
Implementation
set nullable(_i2.bool? value) {
_i4.setProperty(
this,
'nullable',
value ?? _i6.undefined,
);
}