children property

Gets the child items associated with this PdfCheckboxFormField.

Implementation

List<PdfCheckboxFormField>? get children => _children != null
    ? List<PdfCheckboxFormField>.unmodifiable(_children!)
    : null;