value property

String value

Gets this address in string format.

Implementation

String get value {
  var propertyString = properties.keys
      .map((key) => '$key=${_encodeValue(properties[key]!)}')
      .join(',');
  return '$transport:$propertyString';
}