showNotification method
void
showNotification({
- required PanelyNotificationType type,
- required String title,
- String? description,
- dynamic autoCloseDuration = const Duration(seconds: 5),
Implementation
void showNotification({required PanelyNotificationType type, required String title, String? description, autoCloseDuration = const Duration(seconds: 5)}) => _notification.show(type: type, title: title, description: description, autoCloseDuration: autoCloseDuration);