ArcaneAuthProvider constructor

const ArcaneAuthProvider({
  1. required Component child,
  2. void onAuthStateChanged(
    1. AuthState
    )?,
  3. String? redirectOnLogin,
  4. String? redirectOnLogout,
  5. String? serverApiUrl,
  6. Key? key,
})

Implementation

const ArcaneAuthProvider({
  required this.child,
  this.onAuthStateChanged,
  this.redirectOnLogin,
  this.redirectOnLogout,
  this.serverApiUrl,
  super.key,
});