isPartOf method
Parameters:
content
: The Dart source code to check
Returns true
if the content contains a valid part of
directive.
Example:
final isPart = ReflectUtils.isPartOf('part of my_library;');
Implementation
@override
bool isPartOf(String content) => false;