UserChangeModel constructor

UserChangeModel({
  1. required String oldUserId,
  2. required String userId,
  3. String? sessionId,
  4. String? device,
  5. String? os,
  6. String? lang,
})

Implementation

UserChangeModel({
  required this.oldUserId,
  required this.userId,
  this.sessionId,
  this.device,
  this.os,
  this.lang,
});