NtiuspNotiData.fromJson constructor

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

Implementation

NtiuspNotiData.fromJson(Map<String, dynamic> json) {
  pushId = json['pushId'];
  notiType = json['notiType'];
  notiMsgTitle = json['notiMsgTitle'];
  notiMsg = json['notiMsg'];
  notiLnkUrl = json['notiLnkUrl'];
  notiImgUrl = json['notiImgUrl'];
  reportUrl = json['reportUrl'];
}