pub unsafe extern "C" fn Dart_NewStringFromUTF8(
utf8_array: *const u8,
length: isize,
) -> Dart_HandleExpand description
Returns a String built from an array of UTF-8 encoded characters.
\param utf8_array An array of UTF-8 encoded characters. \param length The length of the codepoints array.
\return The String object if no error occurs. Otherwise returns an error handle.