copyWith method
Implementation
ScloudConfig copyWith({
final String? projectId,
final ScloudScripts? scripts,
}) {
return ScloudConfig(
projectId: projectId ?? this.projectId,
scripts: scripts ?? this.scripts,
);
}
ScloudConfig copyWith({
final String? projectId,
final ScloudScripts? scripts,
}) {
return ScloudConfig(
projectId: projectId ?? this.projectId,
scripts: scripts ?? this.scripts,
);
}