addObserver method
Implementation
void addObserver(dynamic key, String postName, Function(dynamic value) notification) {
var list = _notificationMap[postName] ?? [];
list.add(GTFNotificationModel(key, notification));
_notificationMap[postName] = list;
}