Skip to content

Commit

Permalink
Update example app
Browse files Browse the repository at this point in the history
  • Loading branch information
denrase committed Nov 21, 2023
1 parent 2385a2e commit 7910e51
Show file tree
Hide file tree
Showing 4 changed files with 569 additions and 1 deletion.
12 changes: 12 additions & 0 deletions flutter/example/lib/isar/user.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import 'package:isar/isar.dart';

part 'user.g.dart';

@collection
class User {
Id id = Isar.autoIncrement;

String? name;

int? age;
}
Loading

0 comments on commit 7910e51

Please sign in to comment.