set method

Future<Online> set(
  1. AbstractSelector selector,
  2. Object? obj, {
  3. Object? max = null,
  4. bool show = true,
  5. Duration? timeout = null,
  6. int index = 0,
  7. bool click = false,
})

Implementation

Future<Online> set(
  AbstractSelector selector,
  Object? obj, {
  Object? max = null,
  bool show = true,
  Duration? timeout = null,
  int index = 0,
  bool click = false,
}) async {
  var Online = await this;
  return Online.set(
    selector,
    obj,
    max: max,
    show: show,
    timeout: timeout,
    index: index,
    click: click,
  );
}