Note.fromJson constructor
Implementation
Note.fromJson(Map<String, dynamic> json) {
id = json['id'];
author = json['author'];
date = json['date'];
text = json['text'];
baseType = json['@baseType'];
schemaLocation = json['@schemaLocation'];
type = json['@type'];
}