changeValue method

void changeValue(
  1. int? value
)

Updates the value for this OTP input field.

Parameters:

  • value (int?, required): The new codepoint value or null.

Implementation

void changeValue(int? value) {
  _state._changeValue(index, value);
}