Annotation constructor
Annotation(})
Implementation
Annotation(
this.id,
{
String? author,
int? created,
int? modified,
String? text,
Map<String, String>? markdown,
String? location,
bool? confidential,
Set<CodeStub>? tags,
String? encryptedSelf
}) : author = author ?? null,
created = created ?? null,
modified = modified ?? null,
text = text ?? null,
markdown = markdown ?? {},
location = location ?? null,
confidential = confidential ?? null,
tags = tags ?? {},
encryptedSelf = encryptedSelf ?? null;