AuthApiRest constructor
AuthApiRest({})
Implementation
factory AuthApiRest({
required String clientId,
required String clientSecret,
required RedirectUri redirectUri,
required GestorData gestorData,
required String coleccionFuncionesBackend,
bool apiRestEnableDebugLogs = false,
bool cloudDbEnableDebugLogs = false,
bool authApiRestEnableDebugLogs = false,
}) {
_instance ??= AuthApiRest._internal(
clientId: clientId,
clientSecret: clientSecret,
redirectUri: redirectUri,
gestorData: gestorData,
coleccionFuncionesBackend: coleccionFuncionesBackend,
apiRestEnableDebugLogs: apiRestEnableDebugLogs,
cloudDbEnableDebugLogs: cloudDbEnableDebugLogs,
authApiRestEnableDebugLogs: authApiRestEnableDebugLogs,
);
return _instance!;
}