AuthFlowBuilder<T extends AuthController> constructor
const
AuthFlowBuilder<T extends AuthController> ({
- Key? key,
- Object? flowKey,
- AuthAction? action,
- AuthFlowBuilderCallback<
T> ? builder, - dynamic onComplete(
- AuthCredential credential
- Widget? child,
- StateTransitionListener<
T> ? listener, - ProviderConfiguration? config,
- FirebaseAuth? auth,
- AuthFlow? flow,
Implementation
const AuthFlowBuilder({
Key? key,
this.flowKey,
this.action,
this.builder,
this.onComplete,
this.child,
this.listener,
this.config,
this.auth,
this.flow,
}) : assert(
builder != null || child != null,
'Either child or builder should be provided',
),
super(key: key);