From a6f7d0006b454a1ddcfd5865ff386fa9159d991d Mon Sep 17 00:00:00 2001 From: OmarHatem Date: Mon, 10 Jun 2024 17:38:50 +0200 Subject: [PATCH] revert commenting of secrets [skip ci] --- lib/cake_pay/cake_pay_service.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/cake_pay/cake_pay_service.dart b/lib/cake_pay/cake_pay_service.dart index 894760e49..be8e1d189 100644 --- a/lib/cake_pay/cake_pay_service.dart +++ b/lib/cake_pay/cake_pay_service.dart @@ -11,13 +11,13 @@ class CakePayService { static const cakePayUsernameStorageKey = 'cake_pay_username'; 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 CakePayApi cakePayApi;