LRUserData constructor

LRUserData({
  1. required String id,
  2. String? name,
  3. String? phone,
  4. String? email,
  5. String? userCreatedAt,
  6. bool? isFirstTimeUser,
  7. String? mixpanelDistinctId,
  8. String? amplitudeDeviceId,
  9. String? posthogDistinctId,
})

Implementation

LRUserData({
  required this.id,
  this.name,
  this.phone,
  this.email,
  this.userCreatedAt,
  this.isFirstTimeUser,
  this.mixpanelDistinctId,
  this.amplitudeDeviceId,
  this.posthogDistinctId,
});