copyWith method

BodyCreateForcedAlignmentV1ForcedAlignmentPost copyWith({
  1. String? file,
  2. String? text,
  3. bool? enabledSpooledFile,
})

Implementation

BodyCreateForcedAlignmentV1ForcedAlignmentPost copyWith(
    {String? file, String? text, bool? enabledSpooledFile}) {
  return BodyCreateForcedAlignmentV1ForcedAlignmentPost(
      file: file ?? this.file,
      text: text ?? this.text,
      enabledSpooledFile: enabledSpooledFile ?? this.enabledSpooledFile);
}