LoginConfig constructor

const LoginConfig({
  1. String title = 'Login',
  2. String subtitle = 'Enter your email and password to login',
  3. Widget? emailPrefix,
  4. Widget? passwordPrefix,
  5. String forgotPasswordLabel = 'Forgot password?',
  6. String noAccountLabel = "Don't have an account?",
  7. String signUpLabel = 'Sign up',
  8. String buttonLabel = 'Login',
})

Implementation

const LoginConfig({
  this.title = 'Login',
  this.subtitle = 'Enter your email and password to login',
  this.emailPrefix,
  this.passwordPrefix,
  this.forgotPasswordLabel = 'Forgot password?',
  this.noAccountLabel = "Don't have an account?",
  this.signUpLabel = 'Sign up',
  this.buttonLabel = 'Login',
});