NotificationRequest.fromJson constructor

NotificationRequest.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory NotificationRequest.fromJson(Map<String, dynamic> json) =>
    NotificationRequest(
      notificationRequest: Notification.fromJson(json["notificationRequest"]),
    );