defaultKicker static method
- DateTime? now
Builds a sensible default kicker: 'Monday · Good morning'.
Implementation
static String defaultKicker([DateTime? now]) {
final t = now ?? DateTime.now();
final weekday = DateFormat('EEEE').format(t);
return '$weekday · ${_greetingFor(t)}';
}