shouldGenerateMethods static method
Check if methods should be generated
Implementation
static bool shouldGenerateMethods({
required String interfaceName,
required bool isClassAbstract,
bool isInterfaceSealed = false,
}) {
return MethodGeneratorFacade.shouldGenerateMethods(
interfaceName: interfaceName,
isClassAbstract: isClassAbstract,
isInterfaceSealed: isInterfaceSealed,
);
}