getTexts method

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

Obtiene texts con caché

Implementation

Future<String?> getTexts(String textsUrl, String apiKey) async {
  return await _fetchTextsIfNeeded(textsUrl, apiKey);
}