GleapUserProperty constructor

GleapUserProperty({
  1. String? userId,
  2. String? name,
  3. String? email,
  4. String? phone,
  5. double? value,
  6. String? plan,
  7. String? companyName,
  8. String? companyId,
  9. Map<String, dynamic>? customData,
})

Implementation

GleapUserProperty({
  this.userId,
  this.name,
  this.email,
  this.phone,
  this.value,
  this.plan,
  this.companyName,
  this.companyId,
  this.customData,
});