AnnotationEntry<T> constructor
Null safety
- {required T annotation,
- required Offset localPosition}
Create an entry of found annotation by providing the object and related information.
Implementation
const AnnotationEntry({
required this.annotation,
required this.localPosition,
}) : assert(localPosition != null);