We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df98384 commit ef28c48Copy full SHA for ef28c48
extras/encryption/integration_test/drift_encryption_test.dart
@@ -92,7 +92,7 @@ Future<void> main() async {
92
}
93
94
class EmptyDb extends GeneratedDatabase {
95
- EmptyDb(QueryExecutor q) : super(q);
+ EmptyDb(super.q);
96
@override
97
final List<TableInfo> allTables = const [];
98
extras/encryption/lib/encrypted_drift.dart
@@ -1,6 +1,6 @@
1
/// Encryption support for drift, built with the [sqflite_sqlcipher](https://github.com/davidmartos96/sqflite_sqlcipher)
2
/// library.
3
-library encrypted_drift;
+library;
4
5
// this file should be kept in sync with drift_sqflite/lib/drift_sqflite.dart
6
0 commit comments