CPDFSoundAnnotation constructor

CPDFSoundAnnotation({
  1. String title = "",
  2. String content = "",
  3. DateTime? createDate,
  4. required int page,
  5. String uuid = '',
  6. required CPDFRectF rect,
  7. String? soundPath,
})

Implementation

CPDFSoundAnnotation(
    {super.title,
    super.content,
    super.createDate,
    required super.page,
    super.uuid = '',
    required super.rect,
    this.soundPath})
    : super(type: CPDFAnnotationType.sound);