File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,8 @@ class AsyncSqliteDatabase extends WorkerDatabase {
135
135
}
136
136
database.execute (sql, parameters);
137
137
case CustomDatabaseMessageKind .updateSubscriptionManagement:
138
- final shouldSubscribe = (message.rawParameters[0 ] as JSBoolean ).toDart;
138
+ final shouldSubscribe =
139
+ (message.rawParameters.toDart[0 ] as JSBoolean ).toDart;
139
140
final id = message.rawSql.toDart;
140
141
final state = _findState (connection);
141
142
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description: High-performance asynchronous interface for SQLite on Dart and Flut
3
3
version : 0.11.8
4
4
repository : https://github.com/powersync-ja/sqlite_async.dart
5
5
environment :
6
- sdk : " >=3.6 .0 <4.0.0"
6
+ sdk : " >=3.5 .0 <4.0.0"
7
7
8
8
topics :
9
9
- sqlite
You can’t perform that action at this time.
0 commit comments