addNotification method Null safety
- EngineNotification notification
Add a notification to the queue
Implementation
Future<void> addNotification(EngineNotification notification) async {
_queue.add(notification);
await processQueue();
}
Add a notification to the queue
Future<void> addNotification(EngineNotification notification) async {
_queue.add(notification);
await processQueue();
}