inputText static method
Implementation
static Future<bool> inputText(String text) async {
try {
final result = await _channel.invokeMethod('inputText', {'text': text});
return result == true;
} catch (e) {
log('❌ Error al escribir texto: $e');
return false;
}
}