Note.fromJson constructor

Note.fromJson(
  1. Map<String, dynamic> json
)

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'];
}