children property

List<PdfCheckboxFormField>? get children

Gets the child items associated with this PdfCheckboxFormField.

Implementation

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