SignInScreen constructor

const SignInScreen({
  1. Key? key,
  2. required Function changeScreen,
  3. required ClientApp? app,
  4. required String loginChallenge,
  5. required bool? previewMode,
})

Implementation

const SignInScreen({
  Key? key,
  required this.changeScreen,
  required this.app,
  required this.loginChallenge,
  required this.previewMode,
}) : super(key: key);