maybe_click method

Future<Online> maybe_click(
  1. AbstractSelector selector, {
  2. bool show = true,
  3. int index = 0,
})

Implementation

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