service property

HiveMovieCacheService get service

Getter for the service.

Implementation

HiveMovieCacheService get service {
  if (!_isInitialized) {
    throw StateError(
      'MovieCacheProvider not initialized. Call initialize() first.',
    );
  }
  return _service;
}