value property
String
get
value
Gets this address in string format.
Implementation
String get value {
return '$transport:' +
properties.keys
.map((key) => '$key=${_encodeValue(properties[key]!)}')
.join(',');
}