PinAttachment constructor

PinAttachment({
  1. required dynamic attachmentType,
  2. required String title,
  3. String? link,
  4. String? fileExtension,
  5. String? path,
  6. String? size,
})

Implementation

PinAttachment({
  required this.attachmentType,
  required this.title,
  this.link,
  this.fileExtension,
  this.path,
  this.size,
});