AnnotationDto constructor

AnnotationDto({
  1. required String id,
  2. String? author,
  3. int? created,
  4. int? modified,
  5. String? text,
  6. String? location,
})

Returns a new AnnotationDto instance.

Implementation

AnnotationDto({
  required this.id,
  this.author,
  this.created,
  this.modified,
  this.text,
  this.location,
});