annotations method

Iterable annotations(
  1. Type type
)

Implementation

Iterable<dynamic> annotations(Type type) {
  return _annotations.where((dynamic element) => element.runtimeType == type);
}