LogEventUserInfo constructor

LogEventUserInfo({
  1. String? id,
  2. String? name,
  3. String? email,
  4. required Map<String, Object?> extraInfo,
})

Implementation

LogEventUserInfo({
  this.id,
  this.name,
  this.email,
  required this.extraInfo,
});