GenericDocumentType constructor

GenericDocumentType({
  1. required String name,
  2. required String fullName,
  3. required String normalizedName,
  4. int? listIndex = null,
})

Implementation

GenericDocumentType({
  required this.name,
  required this.fullName,
  required this.normalizedName,
  this.listIndex = null,
});