set_range method
Future<Online>
set_range(
- AbstractSelector selector,
- String from,
- String to, {
- Duration? timeout = null,
- bool log = true,
Implementation
Future<Online> set_range(AbstractSelector selector, String from, String to,
{Duration? timeout = null, bool log = true}) async {
var Online = await this;
if (log) Show.setting_range(selector.selector, from, to);
await Online.set(selector, from, timeout: timeout, index: 0);
await Online.set(selector, to, timeout: timeout, index: 1);
return Online;
}