SignInStep constructor

const SignInStep({
  1. Key? key,
  2. required dynamic onEmailSubmit(
    1. String email
    ),
  3. required VoidCallback onGoogleSignIn,
  4. bool isDark = false,
})

Implementation

const SignInStep({
  Key? key,
  required this.onEmailSubmit,
  required this.onGoogleSignIn,
  this.isDark = false,
}) : super(key: key);