copyWith method

BodyCreatesAudioNativeEnabledProjectV1AudioNativePost copyWith({
  1. String? name,
  2. dynamic image,
  3. dynamic author,
  4. dynamic title,
  5. bool? small,
  6. dynamic textColor,
  7. dynamic backgroundColor,
  8. int? sessionization,
  9. dynamic voiceId,
  10. dynamic modelId,
  11. String? file,
  12. bool? autoConvert,
})

Implementation

BodyCreatesAudioNativeEnabledProjectV1AudioNativePost copyWith(
    {String? name,
    dynamic image,
    dynamic author,
    dynamic title,
    bool? small,
    dynamic textColor,
    dynamic backgroundColor,
    int? sessionization,
    dynamic voiceId,
    dynamic modelId,
    String? file,
    bool? autoConvert}) {
  return BodyCreatesAudioNativeEnabledProjectV1AudioNativePost(
      name: name ?? this.name,
      image: image ?? this.image,
      author: author ?? this.author,
      title: title ?? this.title,
      small: small ?? this.small,
      textColor: textColor ?? this.textColor,
      backgroundColor: backgroundColor ?? this.backgroundColor,
      sessionization: sessionization ?? this.sessionization,
      voiceId: voiceId ?? this.voiceId,
      modelId: modelId ?? this.modelId,
      file: file ?? this.file,
      autoConvert: autoConvert ?? this.autoConvert);
}