From f1de5547fc88a3da86d58a6990a576485b412ea7 Mon Sep 17 00:00:00 2001 From: Onnimanni Hannonen Date: Fri, 5 Apr 2024 19:01:28 +0300 Subject: [PATCH] fix: adds default api key file --- lib/src/api/api_keys.default.dart | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lib/src/api/api_keys.default.dart diff --git a/lib/src/api/api_keys.default.dart b/lib/src/api/api_keys.default.dart new file mode 100644 index 0000000..29327ce --- /dev/null +++ b/lib/src/api/api_keys.default.dart @@ -0,0 +1,10 @@ +/// To get an API key, sign up here: +/// https://home.openweathermap.org/users/sign_up +/// +/// Then paste it in here and rename this file to `api_keys.dart`. +/// +/// You can also specify an API Key via --dart-define. Example: +/// "flutter run --dart-define API_KEY=YOUR_API_KEY +class APIKeys { + static const String? openWeatherAPIKey = null; +}