hstring method
Creates an HSTRING from a Dart string whose lifetime is bound to this
Arena.
The returned string is owned by the arena and is released using WindowsDeleteString when the arena is disposed.
This helper is intended for WinRT APIs that expect an HSTRING.
Implementation
HSTRING hstring(String string) =>
this.using(string.toHstring(), WindowsDeleteString);