now static method

Time now()

Now

Implementation

static Time now() {
  final dt = clock.now();
  return Time(
    hour: dt.hour,
    minute: dt.minute,
    second: dt.second,
  );
}