Parse from a json
factory Date.fromJson(Map<String, dynamic> json) => Date( day: json['day'], month: json['month'], year: json['year'], );