focus method

  1. @override
Future<Null> focus()
override

Focuses the element.

Implementation

@override
Future<Null> focus() async {
  await syncFn(() async => _retryWhenStale(() async {
        await _microtask(_single.focus);
      }));
}