GoogleIdpConfigFromPasswords constructor

GoogleIdpConfigFromPasswords({
  1. GoogleAccountDetailsValidation googleAccountDetailsValidation = validateGoogleAccountDetails,
  2. GetExtraGoogleInfoCallback? getExtraGoogleInfoCallback,
})

Creates a new GoogleIdpConfigFromPasswords instance.

Implementation

GoogleIdpConfigFromPasswords({
  super.googleAccountDetailsValidation,
  super.getExtraGoogleInfoCallback,
}) : super(
       clientSecret: GoogleClientSecret.fromJsonString(
         Serverpod.instance.getPasswordOrThrow('googleClientSecret'),
       ),
     );