copyWith method
Implementation
ScloudScripts copyWith({List<String>? preDeploy, List<String>? postDeploy}) {
return ScloudScripts(
preDeploy: preDeploy ?? this.preDeploy,
postDeploy: postDeploy ?? this.postDeploy,
);
}
ScloudScripts copyWith({List<String>? preDeploy, List<String>? postDeploy}) {
return ScloudScripts(
preDeploy: preDeploy ?? this.preDeploy,
postDeploy: postDeploy ?? this.postDeploy,
);
}