Skip to content

Instantly share code, notes, and snippets.

@paulallies
Created March 29, 2020 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulallies/d91204e7a44121a2739ccf778d0c0f80 to your computer and use it in GitHub Desktop.
Save paulallies/d91204e7a44121a2739ccf778d0c0f80 to your computer and use it in GitHub Desktop.
Hive Contact Model
import 'package:hive/hive.dart';
part 'Contact.g.dart';
@HiveType()
class Contact {
@HiveField(0)
final String name;
@HiveField(1)
final String email;
Contact({this.email, this.name});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment