Event.fromJson constructor
Implementation
Event.fromJson(Map<String, dynamic> json)
: id = json['id'],
title = json['title'],
startDate = DateTime.parse((json['startDate'])),
endDate = DateTime.parse((json['endDate'])),
location = json['location'],
isAllDay = json['isAllDay'],
notes = json['notes'];