copyWith method

ScloudConfig copyWith({
  1. String? projectId,
  2. String? dartSdk,
  3. ScloudScripts? scripts,
})

Implementation

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