typeWord method Null safety
Type a sentence , int interval
is by default 0
Implementation
static Future<void> typeWord(
String word, {
int interval = 0,
}) async {
await Process.run('python3', [
kPath,
'type_word',
word,
interval.toString(),
]);
}