Skip to content

Commit 54cf1b9

Browse files
committed
name params
1 parent bf9f1e9 commit 54cf1b9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/powersync_core/lib/src/schema.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -322,11 +322,11 @@ class RawTable {
322322
final PendingStatement put;
323323
final PendingStatement delete;
324324

325-
const RawTable(
326-
this.name,
327-
this.put,
328-
this.delete,
329-
);
325+
const RawTable({
326+
required this.name,
327+
required this.put,
328+
required this.delete,
329+
});
330330

331331
Map<String, dynamic> toJson() => {
332332
'name': name,

0 commit comments

Comments
 (0)