pub unsafe extern "C" fn Dart_NewStringFromUTF16(
    utf16_array: *const u16,
    length: isize
) -> Dart_Handle
Expand description

Returns a String built from an array of UTF-16 encoded characters.

\param utf16_array An array of UTF-16 encoded characters. \param length The length of the codepoints array.

\return The String object if no error occurs. Otherwise returns an error handle.