Inserts text at character index as one contiguous, non-interleavable run.
text
index
RgaText insert(int index, String text) { if (text.isEmpty) return this; return RgaText._(_chars.insertAll(index, text.split(''))); }