static Alarm after(Duration after, void Function() callback) { Alarm alarm = Alarm._(callback, false); alarm._after = after; return alarm; }