startOfDay static method
Implementation
static DateTime startOfDay(){
final now = DateTime.now();
return DateTime(now.year, now.month, now.day, 0, 0, 0);
}
static DateTime startOfDay(){
final now = DateTime.now();
return DateTime(now.year, now.month, now.day, 0, 0, 0);
}