colonSeparated property
Implementation
String get colonSeparated => localPart == null || localPart!.isEmpty
? (prefix.isEmpty ? ':' : '$prefix:')
: '${prefix.isEmpty ? '' : '$prefix'}:$localPart';
String get colonSeparated => localPart == null || localPart!.isEmpty
? (prefix.isEmpty ? ':' : '$prefix:')
: '${prefix.isEmpty ? '' : '$prefix'}:$localPart';