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