PdfFormViewer constructor

const PdfFormViewer({
  1. required String pdfPath,
  2. required List<PdfFormField> fields,
  3. required Map<String, dynamic> formData,
  4. required void onFieldChanged(
    1. String fieldName,
    2. dynamic value
    ),
  5. Set<String> readOnlyFields = const {},
  6. Key? key,
})

Creates a PdfFormViewer.

Implementation

const PdfFormViewer({
  required this.pdfPath,
  required this.fields,
  required this.formData,
  required this.onFieldChanged,
  this.readOnlyFields = const {},
  super.key,
});