Authenticator constructor

const Authenticator({
  1. Key? key,
  2. Widget? child,
  3. List<OAuthUserConfiguration> oAuthUserConfigurations = const [],
})

Creates an Authenticator widget with the optional child Widget and optional oAuthUserConfigurations.

Implementation

const Authenticator({
  super.key,
  this.child,
  this.oAuthUserConfigurations = const [],
});