refreshTheme method

Future<void> refreshTheme()

Implementation

Future<void> refreshTheme() async {
  try {
    await _initialize();
  } on Exception catch (error) {
    throw Exception("$_initializedApolloFailedDescription: $error");
  } on Error catch (error) {
    throw Exception("$_initializedApolloFailedDescription: $error");
  }
}