shouldGenerateMethods static method

bool shouldGenerateMethods({
  1. required String interfaceName,
  2. required bool isClassAbstract,
  3. bool isInterfaceSealed = false,
})

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,
  );
}