updateApiKey method

Future<void> updateApiKey()

Updates the API key in the underlying service.

Implementation

Future<void> updateApiKey() async {
  await _movieService.updateApiKey();
  developer.log(
    'API key updated in underlying service',
    name: 'CachedMovieService',
  );
}