shortId property

String get shortId

A short, display-only handle derived from tunnelId.

Implementation

String get shortId =>
    tunnelId.length <= 8 ? tunnelId : tunnelId.substring(0, 8);