dayWishes static method
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';
}
}