InternalNotification.fromJson constructor

InternalNotification.fromJson(
  1. Map json
)

Implementation

InternalNotification.fromJson(
  Map json,
) {
  id = json["id"];
  title = json["title"];
  subtitle = json["subtitle"];
  body = json["body"];
  image = json["image"];
}