Created
March 29, 2020 09:49
-
-
Save paulallies/d91204e7a44121a2739ccf778d0c0f80 to your computer and use it in GitHub Desktop.
Hive Contact Model
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 '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