APIModuleProxy constructor

const APIModuleProxy(
  1. String moduleClassName, {
  2. String libraryName = '',
  3. String libraryPath = '',
  4. Set<String> ignoreMethods = const <String>{},
})

Implementation

const APIModuleProxy(
  super.moduleClassName, {
  super.libraryName,
  super.libraryPath,
  Set<String> ignoreMethods = const <String>{},
}) : super(
       ignoreMethods: APIModule.interfaceMethodsNames,
       ignoreMethods2: ignoreMethods,
       alwaysReturnFuture: true,
       traverseReturnTypes: const {APIResponse},
       ignoreParametersTypes: const {
         APIRequest,
         APICredential,
         APIAuthentication,
       },
     );