FFSupabaseGoogleAuthConfig constructor

FFSupabaseGoogleAuthConfig({
  1. bool? enabled,
  2. @Deprecated('This field is deprecated.') String? legacyIosClientId,
  3. @Deprecated('This field is deprecated.') String? legacyWebClientId,
  4. FFValue? iosClientId,
  5. 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;
}