postNotification method

void postNotification(
  1. String postName,
  2. dynamic value
)

Implementation

void postNotification(String postName, dynamic value) {
  final list = _notificationMap[postName];
  list?.forEach((element) {
    element.notification(value);
  });
}