addInputString method
Encodes and forwards host input text into the runtime.
Implementation
void addInputString(String text, {Encoding? encoding}) {
if (_disposed || text.isEmpty) return;
addInput((encoding ?? _inputEncoding).encode(text));
}
Encodes and forwards host input text into the runtime.
void addInputString(String text, {Encoding? encoding}) {
if (_disposed || text.isEmpty) return;
addInput((encoding ?? _inputEncoding).encode(text));
}