getGreetings static method
Implementation
static String getGreetings() {
int hour = DateTime.now().hour;
if (hour < 12) {
return 'Good Morning';
} else if (hour < 17) {
return 'Good Afternoon';
} else {
return 'Good Evening';
}
}