copyWith method
ChatBoostFeatures
copyWith({
- List<
ChatBoostLevelFeatures> ? features, - int? minProfileBackgroundCustomEmojiBoostLevel,
- int? minBackgroundCustomEmojiBoostLevel,
- int? minEmojiStatusBoostLevel,
- int? minChatThemeBackgroundBoostLevel,
- int? minCustomBackgroundBoostLevel,
- int? minCustomEmojiStickerSetBoostLevel,
- int? minAutomaticTranslationBoostLevel,
- int? minSpeechRecognitionBoostLevel,
- int? minSponsoredMessageDisableBoostLevel,
Implementation
ChatBoostFeatures copyWith({
List<ChatBoostLevelFeatures>? features,
int? minProfileBackgroundCustomEmojiBoostLevel,
int? minBackgroundCustomEmojiBoostLevel,
int? minEmojiStatusBoostLevel,
int? minChatThemeBackgroundBoostLevel,
int? minCustomBackgroundBoostLevel,
int? minCustomEmojiStickerSetBoostLevel,
int? minAutomaticTranslationBoostLevel,
int? minSpeechRecognitionBoostLevel,
int? minSponsoredMessageDisableBoostLevel,
}) => ChatBoostFeatures(
features: features ?? this.features,
minProfileBackgroundCustomEmojiBoostLevel:
minProfileBackgroundCustomEmojiBoostLevel ??
this.minProfileBackgroundCustomEmojiBoostLevel,
minBackgroundCustomEmojiBoostLevel:
minBackgroundCustomEmojiBoostLevel ??
this.minBackgroundCustomEmojiBoostLevel,
minEmojiStatusBoostLevel:
minEmojiStatusBoostLevel ?? this.minEmojiStatusBoostLevel,
minChatThemeBackgroundBoostLevel:
minChatThemeBackgroundBoostLevel ??
this.minChatThemeBackgroundBoostLevel,
minCustomBackgroundBoostLevel:
minCustomBackgroundBoostLevel ?? this.minCustomBackgroundBoostLevel,
minCustomEmojiStickerSetBoostLevel:
minCustomEmojiStickerSetBoostLevel ??
this.minCustomEmojiStickerSetBoostLevel,
minAutomaticTranslationBoostLevel:
minAutomaticTranslationBoostLevel ??
this.minAutomaticTranslationBoostLevel,
minSpeechRecognitionBoostLevel:
minSpeechRecognitionBoostLevel ?? this.minSpeechRecognitionBoostLevel,
minSponsoredMessageDisableBoostLevel:
minSponsoredMessageDisableBoostLevel ??
this.minSponsoredMessageDisableBoostLevel,
);