focus method

Future<Online> focus(
  1. AbstractSelector selector, {
  2. bool show = true,
})

Implementation

Future<Online> focus(
  AbstractSelector selector, {
  bool show = true,
}) async {
  var Online = await this;
  return Online.focus(
    selector,
    show: show,
  );
}