12 lines
324 B
Dart
12 lines
324 B
Dart
import 'package:be_happy/domain/entities/map_settings.dart';
|
|
import 'package:be_happy/domain/repositories/app_settings_repository.dart';
|
|
|
|
class GetMapSettingsUsecase {
|
|
AppSettingsRepository repository;
|
|
|
|
GetMapSettingsUsecase(this.repository);
|
|
|
|
Future<MapSettings> call() {
|
|
return repository.getMapSettings();
|
|
}
|
|
} |