PdfaAttachedFile constructor

PdfaAttachedFile({
  1. required String name,
  2. required String data,
  3. String subType = '/text/xml',
  4. @Deprecated('Use afRelationship instead') String? AFRelationship,
  5. String afRelationship = '/Alternative',
})

Implementation

PdfaAttachedFile({
  required this.name,
  required this.data,
  this.subType = '/text/xml',
  // ignore: non_constant_identifier_names
  @Deprecated('Use afRelationship instead') String? AFRelationship,
  String afRelationship = '/Alternative',
}) : afRelationship = AFRelationship ?? afRelationship;