select method
Future<Online>
select(
- AbstractSelector selector,
- SelectionStrategy strategy, {
- 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,
);
}