convertFromHString function winrt

  1. @Deprecated('No replacement')
String convertFromHString(
  1. int hstring
)

Takes a HSTRING (a WinRT String handle), and converts it to a Dart String.

Implementation

@Deprecated('No replacement')
String convertFromHString(int hstring) =>
    WindowsGetStringRawBuffer(hstring, nullptr).toDartString();