Created
August 4, 2022 11:11
-
-
Save nbnD/7dec68ee93510bc4dbc8afb668db0d50 to your computer and use it in GitHub Desktop.
flutter hive
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 'data_model.g.dart'; | |
@HiveType(typeId: 0) | |
class DataModel extends HiveObject{ | |
@HiveField(0) | |
final String? item; | |
@HiveField(1) | |
final int? quantity; | |
DataModel({this.item, this.quantity}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment