revert commenting of secrets [skip ci]

This commit is contained in:
OmarHatem 2024-06-10 17:38:50 +02:00
parent 5a4a4bd7f4
commit a6f7d0006b

View file

@ -11,13 +11,13 @@ class CakePayService {
static const cakePayUsernameStorageKey = 'cake_pay_username'; static const cakePayUsernameStorageKey = 'cake_pay_username';
static const cakePayUserTokenKey = 'cake_pay_user_token'; static const cakePayUserTokenKey = 'cake_pay_user_token';
static String get testCakePayApiKey => "secrets.testCakePayApiKey;"; static String get testCakePayApiKey => secrets.testCakePayApiKey;
static String get cakePayApiKey => "secrets.cakePayApiKey;"; static String get cakePayApiKey => secrets.cakePayApiKey;
static String get CSRFToken => "secrets.CSRFToken;"; static String get CSRFToken => secrets.CSRFToken;
static String get authorization => "secrets.authorization;"; static String get authorization => secrets.authorization;
final SecureStorage secureStorage; final SecureStorage secureStorage;
final CakePayApi cakePayApi; final CakePayApi cakePayApi;