OSNotificationClickEvent constructor

OSNotificationClickEvent(
  1. Map<String, dynamic> json
)

Implementation

OSNotificationClickEvent(Map<String, dynamic> json) {
  notification = OSNotification(json["notification"].cast<String, dynamic>());
  result = OSNotificationClickResult(json["result"].cast<String, dynamic>());
}