NoteInfo.from constructor

NoteInfo.from(
  1. 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']!);