BaseLoginSignUpResponse constructor

BaseLoginSignUpResponse({
  1. String? errorCode,
  2. String? message,
  3. BaseUser? user,
})

Implementation

BaseLoginSignUpResponse({
  this.errorCode,
  this.message,
  this.user,
});