thisDayLastSecond method

DateTime thisDayLastSecond()

Implementation

DateTime thisDayLastSecond() {
  final now = DateTime.now();
  return DateTime(now.year, now.month, now.day, 23, 59, 59, 99, 999);
}