copyWith method
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,
})
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);
}