CustomEventModel constructor

CustomEventModel({
  1. required String type,
  2. Map<String, dynamic>? params,
  3. String? sessionId,
  4. String? userId,
  5. String? device,
  6. String? os,
  7. String? lang,
})

Implementation

CustomEventModel({
  required this.type,
  this.params,
  this.sessionId,
  this.userId,
  this.device,
  this.os,
  this.lang,
});