firstNextMonth method

Date firstNextMonth()

Implementation

Date firstNextMonth() {
  var time = toDateTime();
  var currentMonth = time.month;
  while (currentMonth == time.month) {
    time = time.add(Duration(days: 1));
  }
  return Date.fromDateTime(time);
}