operator [] method

PdfField operator [](
  1. int index
)

Gets the PdfField at the specified index.

Implementation

PdfField operator [](int index) {
  if ((count < 0) || (index >= count)) {
    throw RangeError('index');
  }
  return _helper.list[index] as PdfField;
}