sshTarget property

String? get sshTarget

Implementation

String? get sshTarget => targetIp == null || username == null
    ? null
    : targetIp!.sshTarget(username!);