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