importDataAttributes property
bool?
get
importDataAttributes
Specify to use the data-inputmask
attributes or to ignore them.
If you don't use data attributes you can disable the import by specifying importDataAttributes: false
.
@default true
Implementation
_i2.bool? get importDataAttributes => _i4.getProperty(
this,
'importDataAttributes',
);
set
importDataAttributes
(bool? value)
Implementation
set importDataAttributes(_i2.bool? value) {
_i4.setProperty(
this,
'importDataAttributes',
value ?? _i6.undefined,
);
}