type abstract method

Future<void> type(
  1. String keys, {
  2. bool focusBefore = true,
  3. bool blurAfter = true,
})

Types keys into this element, if possible (e.g. for an input element).

focusBefore indicates whether to focus this element before typing. blurAfter indicates whether to blur this element after typing.

Implementation

Future<void> type(String keys,
    {bool focusBefore = true, bool blurAfter = true});