Skip to content

Instantly share code, notes, and snippets.

@reasje
Created February 9, 2022 13:02
Show Gist options
  • Save reasje/94822aaba9e9df6d65749f9766d07565 to your computer and use it in GitHub Desktop.
Save reasje/94822aaba9e9df6d65749f9766d07565 to your computer and use it in GitHub Desktop.
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