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