shiftPositions property

bool? shiftPositions

Alter the behavior of the char shifting on entry or deletion.

In some cases shifting the mask entries or deletion should be more restrictive.

Ex. date masks. Shifting month to day makes no sense

@default true

Implementation

_i2.bool? get shiftPositions => _i4.getProperty(
      this,
      'shiftPositions',
    );
void shiftPositions=(bool? value)

Implementation

set shiftPositions(_i2.bool? value) {
  _i4.setProperty(
    this,
    'shiftPositions',
    value ?? _i6.undefined,
  );
}