toUtc method

Day toUtc()

Convert this Day to UTC.

Implementation

Day toUtc() {
  final d = clone();
  d._time = d._time.toUtc();
  d._parseTime();
  return d;
}