set method
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,
);
}