select method

Future<Online> select(
  1. AbstractSelector selector,
  2. SelectionStrategy strategy, {
  3. bool show = true,
})

Implementation

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