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