获取当前日期返回DateTime,可以指定是否返回UTC时间
static DateTime getNowDateTime({bool isUtc = false}) => isUtc ? DateTime.now().toUtc() : DateTime.now();