show method
Implementation
@override
Future<void> show(NeomageNotification notification) async {
_active[notification.id] = notification;
_notifications.add(notification);
if (notification.autoHide != null) {
Future.delayed(notification.autoHide!, () {
dismiss(notification.id);
});
}
}