NotificationCustomData.fromJson constructor
Implementation
factory NotificationCustomData.fromJson(Map<String, dynamic> json) {
return NotificationCustomData(
appUrl: json['appurl'],
scene: json['scene'],
targetUrl: json['target_url'],
businessLogId: json['business_log_id'],
pathType: json['pathtype'],
actionType: json['action_type'],
timestamp: json['timestamp'],
);
}