AuthFlowBuilder<T extends AuthController> constructor

const AuthFlowBuilder<T extends AuthController>({
  1. Key? key,
  2. Object? flowKey,
  3. AuthAction? action,
  4. AuthFlowBuilderCallback<T>? builder,
  5. dynamic onComplete(
    1. AuthCredential credential
    )?,
  6. Widget? child,
  7. StateTransitionListener<T>? listener,
  8. ProviderConfiguration? config,
  9. FirebaseAuth? auth,
  10. 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);