LoginForm constructor

const LoginForm({
  1. Key? key,
  2. String? title,
  3. required DoLoginWithCredentials doLogin,
  4. OnClick? goSubscribe,
  5. required OnClick goForgivenPassword,
  6. String? errorMessage,
})

Implementation

const LoginForm({
  Key? key,
  this.title,
  required this.doLogin,
  this.goSubscribe,
  required this.goForgivenPassword,
  this.errorMessage,
}) : super(key: key);