copyWith method
MessageAnimation
copyWith({
- Animation? animation,
- FormattedText? caption,
- bool? showCaptionAboveMedia,
- bool? hasSpoiler,
- bool? isSecret,
Implementation
MessageAnimation copyWith({
Animation? animation,
FormattedText? caption,
bool? showCaptionAboveMedia,
bool? hasSpoiler,
bool? isSecret,
}) => MessageAnimation(
animation: animation ?? this.animation,
caption: caption ?? this.caption,
showCaptionAboveMedia: showCaptionAboveMedia ?? this.showCaptionAboveMedia,
hasSpoiler: hasSpoiler ?? this.hasSpoiler,
isSecret: isSecret ?? this.isSecret,
);