Skip to content

Instantly share code, notes, and snippets.

@nbnD
Created August 4, 2022 11:11
Show Gist options
  • Save nbnD/7dec68ee93510bc4dbc8afb668db0d50 to your computer and use it in GitHub Desktop.
Save nbnD/7dec68ee93510bc4dbc8afb668db0d50 to your computer and use it in GitHub Desktop.
flutter hive
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