NewEventRequest.fromJson constructor

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

Implementation

factory NewEventRequest.fromJson(Map<String, dynamic> json) => NewEventRequest(
      appToken: json["app_token"],
      identifier: json["identifier"],
      eventName: json["event_name"],
      eventValues: json["event_values"],
      registration: json["registration"],
      conversionEvent: json["conversion_event"],
      conversionNotId: json["conversion_value"],
      conversionValue: json["conversion_notid"],
    );