fetchConfig method

Future<void> fetchConfig()

Implementation

Future<void> fetchConfig() async {
  // Call the skin service to fetch skin for developer and project
  //final skin = await SkinService().getSkin(apiKey);
  _cachedConfig = await skinService?.fetchData();
  _skinController.add(ThemeData(colorScheme: _cachedConfig?.skin?.colors));
}