NotificationMessageModel.fromJson constructor

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

Implementation

factory NotificationMessageModel.fromJson(Map<String, dynamic> json) =>
    NotificationMessageModel(
      id: json["id"],
      parentId: json["parent_id"],
      type: json["type"],
      message: json["message"],
      isSent: json["is_sent"],
    );