NewEventRequest constructor

NewEventRequest({
  1. required String appToken,
  2. required String identifier,
  3. required String registration,
  4. required String eventName,
  5. Map<String, dynamic> eventValues = const {},
  6. bool conversionEvent = false,
  7. double conversionValue = 0,
  8. String conversionNotId = '',
})

Implementation

NewEventRequest({
  required this.appToken,
  required this.identifier,
  required this.registration,
  required this.eventName,
  this.eventValues = const {},
  this.conversionEvent = false,
  this.conversionValue = 0,
  this.conversionNotId = '',
});