EventModel constructor

EventModel({
  1. String? name,
  2. int? eventTime,
  3. String? attributes,
  4. String? rawProperties,
  5. String? properties,
})

Implementation

EventModel(
{
  this.name,
  this.eventTime,
  this.attributes,
  this.rawProperties,
  this.properties
}
    );