LoginState constructor

const LoginState({
  1. bool isLoading = false,
  2. String? error,
  3. bool isSuccess = false,
})

Implementation

const LoginState({
  this.isLoading = false,
  this.error,
  this.isSuccess = false,
});