input method

void input(
  1. ElNode element, {
  2. String? value,
})

Fires a synthetic input event on element with the specified text value.

Throws StateError if element has no 'input' handler registered.

Implementation

void input(ElNode element, {String? value}) =>
    _dispatch(element, 'input', value: value);