shouldCheckGeneric static method
Checks if the given type should be checked for generic parameters.
Parameters:
type: The type to check
Returns:
trueif the type should be checked for generic parametersfalseotherwise
Example:
final result = GenericTypeParser.shouldCheckGeneric(List);
print(result); // true
Implementation
static bool shouldCheckGeneric(Type type) => isGenericMirror(type.toString());