NotificationsItems.fromJson constructor

NotificationsItems.fromJson(
  1. dynamic json
)

Implementation

NotificationsItems.fromJson(dynamic json) {
  _notificationId = json['notification_id'];
  _idRedirect = json['id_redirect'];
  _contentType = json['content_type'];
  _title = json['title'];
  _message = json['message'];
  _image = json['image'];
  _deviceType = json['device_type'];
  _createdAtDateTime = json['created_at_date_time'] != null ? CreatedAtDateTime.fromJson(json['created_at_date_time']) : null;
}