Annotation constructor
Annotation({})
Implementation
factory Annotation({
@JsonKey(name: 'ID') String? id,
/// The individual responsible for making the annotation.
@JsonKey(name: 'AuthorReference') Reference? authorReference,
@JsonKey(name: 'AuthorString') String? authorString,
@JsonKey(name: 'Time') DateTime? time,
/// The text of the annotation in markdown format.
@JsonKey(name: 'Text') String? text,
}) = _Annotation;