children property

List<PdfTextFormField>? children

Gets the child items associated with this PdfTextFormField.

Implementation

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