LoginPage constructor

const LoginPage({
  1. Key? key,
  2. Widget? appBar,
  3. Widget? emailField,
  4. Widget? passwordField,
  5. Widget? forgetPassword,
  6. Widget? dontHaveAccount,
  7. Widget? loginButton,
  8. dynamic initState,
  9. dynamic dispose,
})

Implementation

const LoginPage(
    {Key? key,
    this.logo,
    this.appBar,
    this.emailField,
    this.passwordField,
    this.forgetPassword,
    this.dontHaveAccount,
    this.loginButton,
    this.initState,
    this.dispose})
    : super(key: key);