AppCheck constructor
AppCheck({})
Implementation
AppCheck({
required String encrypterSecretKey,
required Duration clientApiAllowance,
required DbService dbService,
}) : _dbService = dbService,
_clientApiAllowance = clientApiAllowance,
_encrypterSecretKey = encrypterSecretKey {
_checkAppDatasource = CheckAppDatasource(
encrypterSecretKey: _encrypterSecretKey,
apiHashExpiryAfter: _clientApiAllowance,
dbService: _dbService,
);
}