insertString method
Implementation
void insertString(IStatus status, int tag, String str) {
Pointer<Utf8> strUtf = str.toNativeUtf8(allocator: mem);
try {
_insertString(self, status.self, tag, strUtf);
status.checkStatus();
} finally {
mem.free(strUtf);
}
}