copyWith method

  1. @override
MessageAnimation copyWith({
  1. Animation? animation,
  2. FormattedText? caption,
  3. bool? hasSpoiler,
  4. bool? isSecret,
})
override

Implementation

@override
MessageAnimation copyWith({
  Animation? animation,
  FormattedText? caption,
  bool? hasSpoiler,
  bool? isSecret,
}) =>
    MessageAnimation(
      animation: animation ?? this.animation,
      caption: caption ?? this.caption,
      hasSpoiler: hasSpoiler ?? this.hasSpoiler,
      isSecret: isSecret ?? this.isSecret,
    );