set_secret method
Future<Online>
set_secret(
- AbstractSelector selector,
- String text, {
- Duration? timeout = null,
- int index = 0,
Implementation
Future<Online> set_secret(
AbstractSelector selector,
String text, {
Duration? timeout = null,
int index = 0,
}) async {
var Online = await this;
return Online.set_secret(
selector,
text,
timeout: timeout,
index: index,
);
}