DateDay copyWith({int? year, int? month, int? day}) { return DateDay(year ?? this.year, month ?? this.month, day ?? this.day); }