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