dayWishes static method

String dayWishes()

Implementation

static String dayWishes() {
  final now = DateTime.now();
  final hour = now.hour;

  if (hour < 12) {
    return 'Good Morning';
  } else if (hour < 18) {
    return 'Good Afternoon';
  } else {
    return 'Good Evening';
  }
}