NoteInfo.from constructor
NoteInfo.from(
- Map map
Implementation
NoteInfo.from(Map<dynamic, dynamic> map) :
id = map['id']! as int,
fields = List<String>.from(map['fields']!),
tags = List<String>.from(map['tags']!);