UserLoginState constructor

UserLoginState({
  1. String? userName,
  2. String? password,
  3. bool isLoading = false,
  4. String? errorMessage,
  5. bool isSuccess = false,
})

Implementation

UserLoginState({
  this.userName,
  this.password,
  this.isLoading = false,
  this.errorMessage,
  this.isSuccess = false,
});