setApiKey static method

void setApiKey(
  1. String apiKey
)

Implementation

static void setApiKey(String apiKey) {
  SharedPreferences.getInstance().then((prefs) {
    prefs.setString(apiKeyKey, apiKey);
  });
}