set_secret method

Future<Online> set_secret(
  1. AbstractSelector selector,
  2. String text, {
  3. Duration? timeout = null,
  4. 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,
  );
}