copyWith method

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

Implementation

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