insert method
Inserts the list item field at the specified index.
Implementation
void insert(int index, PdfListFieldItem item) {
if (index < 0 || index > count) {
throw RangeError('index');
}
_doInsert(index, item);
}
Inserts the list item field at the specified index.
void insert(int index, PdfListFieldItem item) {
if (index < 0 || index > count) {
throw RangeError('index');
}
_doInsert(index, item);
}