CrispUser constructor

CrispUser({
  1. required String email,
  2. String? avatar,
  3. String? nickname,
  4. String? phone,
  5. String? verificationCode,
})

Creates a new instance of chat user to be user in CrispMain.register

Implementation

CrispUser({
  required this.email,
  this.avatar,
  this.nickname,
  this.phone,
  this.verificationCode,
});