forceRefreshTexts method

Future<String?> forceRefreshTexts(
  1. String textsUrl,
  2. String apiKey
)

Fuerza actualización de texts

Implementation

Future<String?> forceRefreshTexts(String textsUrl, String apiKey) async {
  _cachedTexts = null;
  await ObslyStorage.instance.storeInternalState(_textsTimestampKey, null);
  return await _fetchTextsIfNeeded(textsUrl, apiKey);
}