iterable property
Iterable<Annotation>
get
iterable
Implementation
Iterable<Annotation> get iterable sync* {
for (final entry in annotations.entries) {
yield (key: entry.key, value: entry.value);
}
}