Skip to content

Instantly share code, notes, and snippets.

@viveky259259
Created September 30, 2019 14:43
Show Gist options
  • Save viveky259259/f919f5ec756dca9a612b15275fd39ce5 to your computer and use it in GitHub Desktop.
Save viveky259259/f919f5ec756dca9a612b15275fd39ce5 to your computer and use it in GitHub Desktop.
Note Model class
class NoteModel {
String _title;
String _description;
NoteModel(this._title, this._description);
String get description => _description;
String get title => _title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment