stringValue property
Get the String value of this octet string. Note this uses Dart's default decoding of bytes to String (UTF-16). Be careful with this method as it may not be the correct encoding for your purposes. @deprecated use utf8StringValue or utf16StringValue instead
Implementation
@override
String get stringValue => octets.join('.');