OsmNoteComment.fromJson constructor
Implementation
factory OsmNoteComment.fromJson(Map<String, dynamic> data) {
return OsmNoteComment(
author: data['author'],
message: data['message'],
date: DateTime.fromMillisecondsSinceEpoch(data['date']),
isNew: data['isNew'],
);
}