sendText method

Future<void> sendText(
  1. String text, {
  2. InputSource? inputSource,
  3. bool debug = false,
})

Implementation

Future<void> sendText(String text, {InputSource? inputSource, bool debug = false}) async {
  await exec(_makeText(text, inputSource: inputSource), debug: debug);
}