Skip to content

Instantly share code, notes, and snippets.

@viveky259259
Last active September 11, 2020 17:32
Show Gist options
  • Save viveky259259/13150c2b70eef2bb2d02bd2c9975d3ca to your computer and use it in GitHub Desktop.
Save viveky259259/13150c2b70eef2bb2d02bd2c9975d3ca to your computer and use it in GitHub Desktop.
Person model class
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