We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1840842 commit 59a2eeaCopy full SHA for 59a2eea
1 file changed
lib/services/shopinbit/shopinbit_service.dart
@@ -1,3 +1,4 @@
1
+import '../../db/drift/shared_db/shared_database.dart';
2
import '../../external_api_keys.dart';
3
import '../../utilities/flutter_secure_storage_interface.dart';
4
import '../../utilities/logger.dart';
@@ -62,4 +63,10 @@ class ShopInBitService {
62
63
await _secure.delete(key: _kShopinBitCustomerKeyKeySecureStore);
64
Logging.instance.i("ShopInBitService: customer key cleared");
65
}
66
+
67
+ Future<List<ShopInBitTicketsCompanion>> fetchAllForCustomerKey(
68
+ String customerKey,
69
+ ) async {
70
+ throw UnimplementedError("TODO");
71
+ }
72
0 commit comments