toLocal method

Day toLocal()

Convert this Day to local.

Implementation

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