List<Class> implementors

Returns all the implementors of the class specified.

Source

List<Class> get implementors {
  return (package._implementors[href] != null
          ? package._implementors[href]
          : [])
      .toList(growable: false) as List<Class>;
}