isPartOf method

  1. @override
bool isPartOf(
  1. String content
)
override

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;