Created
February 9, 2022 13:02
-
-
Save reasje/94822aaba9e9df6d65749f9766d07565 to your computer and use it in GitHub Desktop.
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 'timedetail_model.g.dart'; | |
@HiveType(typeId: 1) | |
class TimeDetail { | |
@HiveField(0) | |
DateTime createdAt; | |
@HiveField(1) | |
DateTime updatedAt; | |
TimeDetail(this.createdAt, this.updatedAt); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment