OANotification.fromJson constructor

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

Implementation

OANotification.fromJson(Map<String, dynamic> json) {
  notificationName = json['notificationName'];
  notificationFaceURL = json['notificationFaceURL'];
  notificationType = json['notificationType'];
  text = json['text'];
  externalUrl = json['externalUrl'];
  mixType = json['mixType'];
  pictureElem = json['pictureElem'] != null
      ? PictureElem.fromJson(json['pictureElem'])
      : null;
  soundElem = json['soundElem'] != null
      ? SoundElem.fromJson(json['soundElem'])
      : null;
  videoElem = json['videoElem'] != null
      ? VideoElem.fromJson(json['videoElem'])
      : null;
  fileElem =
      json['fileElem'] != null ? FileElem.fromJson(json['fileElem']) : null;
  ex = json['ex'];
}