NotificationCustomData.fromJson constructor

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

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'],
  );
}