UPdfFormField constructor

const UPdfFormField({
  1. required int objectNumber,
  2. required String name,
  3. required UDocFieldKind kind,
  4. required int pageIndex,
  5. required Rect rect,
  6. Object? value,
  7. List<String> options = const <String>[],
  8. bool readOnly = false,
  9. bool required = false,
  10. int maxLength = 0,
})

Implementation

const UPdfFormField({
  required this.objectNumber,
  required this.name,
  required this.kind,
  required this.pageIndex,
  required this.rect,
  this.value,
  this.options = const <String>[],
  this.readOnly = false,
  this.required = false,
  this.maxLength = 0,
});