onBackspace method
Implementation
void onBackspace(int index) {
if (_isDisposed) return;
if (controllers[index].text.isEmpty && index > 0) {
controllers[index - 1].clear();
focusNodes[index - 1].requestFocus();
_notifyValueChanged();
}
}