tomorrow method

DateTime tomorrow()

Implementation

DateTime tomorrow() {
  return DateTime(this.year, this.month, this.day + 1);
}