parseNotificationPageData function

PageData<PushNotification> parseNotificationPageData(
  1. Map<String, dynamic> json
)

Implementation

PageData<PushNotification> parseNotificationPageData(
    Map<String, dynamic> json) {
  return PageData.fromJson(json, (json) => PushNotification.fromJson(json));
}