secret property

String? secret

Implementation

static String? get secret {
  if (_secret == null || _secret!.isEmpty)
    throw NullOrEmptyArgument("GlobalVariables.secret");
  return _secret;
}
void secret=(String? value)

Implementation

static set secret(String? value) => _secret = value;