typeText method

void typeText(
  1. String text
)

Implementation

void typeText(String text) {
  for (final char in text.split('')) {
    sendChar(char);
  }
}