copyWith method
Implementation
Settings copyWith({
bool? persistenceEnabled,
String? host,
bool? sslEnabled,
int? cacheSizeBytes,
bool? ignoreUndefinedProperties,
}) =>
Settings(
persistenceEnabled: persistenceEnabled ?? this.persistenceEnabled,
host: host ?? this.host,
sslEnabled: sslEnabled ?? this.sslEnabled,
cacheSizeBytes: cacheSizeBytes ?? this.cacheSizeBytes,
ignoreUndefinedProperties:
ignoreUndefinedProperties ?? this.ignoreUndefinedProperties,
);