Last active
September 11, 2020 17:32
-
-
Save viveky259259/13150c2b70eef2bb2d02bd2c9975d3ca to your computer and use it in GitHub Desktop.
Person model class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:hive/hive.dart'; | |
part 'person.model.g.dart'; | |
@HiveType(typeId: 1) | |
class PersonModel{ | |
@HiveField(0) | |
int id; | |
@HiveField(1) | |
String name; | |
@HiveField(2) | |
DateTime birthDate; | |
PersonModel(this.id, this.name, this.birthDate); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment