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;
return Online.set_range(
selector,
from,
to,
timeout: timeout,
log: log,
);
}