LoginPage constructor

LoginPage({
  1. Key? key,
  2. String? logoApp,
  3. String? logoCompany,
  4. String? routeBackTo,
  5. Color? appbarColor,
  6. Color? backgroundColors,
  7. required ILoginViewModel viewModel,
})

Implementation

LoginPage(
    {Key? key,
    this.logoApp,
    this.logoCompany,
    this.routeBackTo,
    this.appbarColor,
    this.backgroundColors,
    required ILoginViewModel viewModel})
    : super(key: key, viewModel: viewModel);