Skip to content

Commit

Permalink
Make data models consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
cbullinger committed Mar 19, 2024
1 parent 4ff17e0 commit a11228a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
3 changes: 2 additions & 1 deletion examples/dart/test_sdk_example/test/car.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ part 'car.g.dart';
@RealmModel()
class _Car {
@PrimaryKey()
late final String make;
late ObjectId id;

late String make;
late String? model;
late int? miles;
}
Expand Down
13 changes: 11 additions & 2 deletions examples/dart/test_sdk_example/test/car.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a11228a

Please sign in to comment.