NotificationDataResponse.fromJson constructor

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

Implementation

factory NotificationDataResponse.fromJson(Map<String, dynamic> json) =>
    NotificationDataResponse(
      id: json["id"],
      billId: json["billId"],
      title: json["title"],
      subtitle: json["subtitle"],
      imageUrl: json["imageUrl"],
      type: json["type"],
      param: json["param"],
      workFlowName: json["workFlowName"],
      sessionId: json["sessionId"],
      invoiceId: json["invoiceId"],
      profileId: json["profileId"],
    );