Notification.fromJson constructor

Notification.fromJson(
  1. dynamic json
)

Implementation

Notification.fromJson(dynamic json) {
  _isNotification = json['is_notification'];
  _title = json['title'];
  _message = json['message'];
  _date = json['date'];
}