The current date
static Date now({bool utc = false}) { var now = DateTime.now(); if (utc) { now = now.toUtc(); } return now.toDate(); }