LoginScreen constructor

const LoginScreen({
  1. Key? key,
  2. String title = 'Welcome back! Glad to see you, Again!',
  3. dynamic onGoogleLogin()?,
  4. dynamic onAppleLogin()?,
})

Implementation

const LoginScreen({
  super.key,
  this.title = 'Welcome back! Glad to see you, Again!',
  this.onGoogleLogin,
  this.onAppleLogin,
});