onBackspace method

void onBackspace(
  1. int index
)

Implementation

void onBackspace(int index) {
  if (_isDisposed) return;

  if (controllers[index].text.isEmpty && index > 0) {
    controllers[index - 1].clear();
    focusNodes[index - 1].requestFocus();
    _notifyValueChanged();
  }
}