operator [] method
Gets the PdfListFieldItem at the specified index.
Implementation
PdfListFieldItem operator [](int index) {
if (index < 0 || index >= count) {
throw RangeError('index');
}
return _helper.list[index] as PdfListFieldItem;
}