name property

String get name

Implementation

String get name {
  switch (this) {
    case SSHAuthMethod.none:
      return 'none';
    case SSHAuthMethod.password:
      return 'password';
    case SSHAuthMethod.publicKey:
      return 'publickey';
    case SSHAuthMethod.keyboardInteractive:
      return 'keyboard-interactive';
  }
}