factory DateInterval.fromJson(Map<String, dynamic> json) { return DateInterval( end: json['End'] as String, start: json['Start'] as String, ); }