AuthProvider constructor

const AuthProvider({
  1. Key? key,
  2. int? splashScreenDurationMillis,
  3. bool autoSignInAnonymously = false,
  4. Future onZombieGenerated(
    1. String
    )?,
  5. required Widget child,
})

Implementation

const AuthProvider(
    {Key? key,
    this.splashScreenDurationMillis,
    this.autoSignInAnonymously = false,
    this.onZombieGenerated,
    required this.child})
    : super(key: key);