copyWith method

ScloudScripts copyWith({
  1. List<String>? preDeploy,
  2. List<String>? postDeploy,
})

Implementation

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