ChatConnectionState constructor

ChatConnectionState({
  1. String? name,
  2. String? phoneNo,
  3. String? email,
  4. bool isLoading = false,
})

Implementation

ChatConnectionState({
  this.name,
  this.phoneNo,
  this.email,
  this.isLoading = false,
});