FFPostgresProjectConfig constructor
FFPostgresProjectConfig({
- @Deprecated('This field is deprecated.') String? legacyPostgresUrl,
- @Deprecated('This field is deprecated.') String? legacyAnonKey,
- bool? enabled,
- FFValue? postgresUrl,
- FFValue? anonKey,
Implementation
factory FFPostgresProjectConfig({
@$core.Deprecated('This field is deprecated.')
$core.String? legacyPostgresUrl,
@$core.Deprecated('This field is deprecated.') $core.String? legacyAnonKey,
$core.bool? enabled,
FFValue? postgresUrl,
FFValue? anonKey,
}) {
final result = create();
if (legacyPostgresUrl != null) result.legacyPostgresUrl = legacyPostgresUrl;
if (legacyAnonKey != null) result.legacyAnonKey = legacyAnonKey;
if (enabled != null) result.enabled = enabled;
if (postgresUrl != null) result.postgresUrl = postgresUrl;
if (anonKey != null) result.anonKey = anonKey;
return result;
}