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