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