removeAnnotations method

void removeAnnotations(
  1. Type type
)

Implementation

void removeAnnotations(Type type) {
  _annotations.removeWhere((dynamic element) => element.runtimeType == type);
}