FFSupabaseGoogleAuthConfig constructor
FFSupabaseGoogleAuthConfig({
- bool? enabled,
- @Deprecated('This field is deprecated.') String? legacyIosClientId,
- @Deprecated('This field is deprecated.') String? legacyWebClientId,
- FFValue? iosClientId,
- FFValue? webClientId,
Implementation
factory FFSupabaseGoogleAuthConfig({
$core.bool? enabled,
@$core.Deprecated('This field is deprecated.')
$core.String? legacyIosClientId,
@$core.Deprecated('This field is deprecated.')
$core.String? legacyWebClientId,
FFValue? iosClientId,
FFValue? webClientId,
}) {
final result = create();
if (enabled != null) result.enabled = enabled;
if (legacyIosClientId != null) result.legacyIosClientId = legacyIosClientId;
if (legacyWebClientId != null) result.legacyWebClientId = legacyWebClientId;
if (iosClientId != null) result.iosClientId = iosClientId;
if (webClientId != null) result.webClientId = webClientId;
return result;
}