items property

Gets the items of the radio button field.{Read-Only}

Implementation

PdfRadioButtonItemCollection get items {
  if (_helper.isLoadedField) {
    _items ??= _getRadioButtonListItems(
        PdfRadioButtonItemCollectionHelper.getCollection(this));
    return _items!;
  } else {
    if (_items == null) {
      _items = PdfRadioButtonItemCollectionHelper.getCollection(this);
      _helper.dictionary!.setProperty(PdfDictionaryProperties.kids, _items);
    }
    return _items!;
  }
}