input method
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);