isAccessibleIn2 abstract method

  1. @Deprecated('Use isAccessibleIn() instead')
bool isAccessibleIn2(
  1. LibraryElement library
)

Return true if this element, assuming that it is within scope, is accessible to code in the given library. This is defined by the Dart Language Specification in section 6.2:

A declaration m is accessible to a library L if m is declared in L or if m is public.

Implementation

@Deprecated('Use isAccessibleIn() instead')
bool isAccessibleIn2(LibraryElement library);