11 lines
222 B
Dart
11 lines
222 B
Dart
import 'package:hl_lieferservice/persistence.dart';
|
|
|
|
abstract class BaseRepository {
|
|
final String path;
|
|
|
|
const BaseRepository({required this.path});
|
|
|
|
Future<bool> exist() {
|
|
return FileStorage().exist(path);
|
|
}
|
|
} |