getCurrentTime static method

String getCurrentTime({
  1. String format = Format.fHHmmss,
})

get current time with format

Implementation

static String getCurrentTime({String format = Format.fHHmmss}) {
  return getCurrentDateTime(format: format);
}