LoginEvent constructor

LoginEvent({
  1. required String accountId,
  2. String? externalId,
  3. String? tag,
  4. String? status,
  5. EventLocation? location,
  6. Map<String, Object>? properties,
})

Implementation

LoginEvent({
  required this.accountId,
  this.externalId,
  this.tag,
  this.status,
  this.location,
  this.properties,
});