Converts this HSTRING to a Dart String.
If this value is NULL, an empty Dart string is returned.
NULL
String toDartString() { if (isNull) return ''; final pwstr = WindowsGetStringRawBuffer(this, null); return pwstr.toDartString(length: length); }