updateMask method

void updateMask(
  1. String mask, {
  2. bool moveCursorToEnd = true,
})

Implementation

void updateMask(String mask, {bool moveCursorToEnd = true}) {
  this.mask = mask;
  updateText(text);

  if (moveCursorToEnd) {
    this.moveCursorToEnd();
  }
}