copyWith method
PageBlockAnimation
copyWith({
- Animation? animation,
- PageBlockCaption? caption,
- bool? needAutoplay,
- bool? hasSpoiler,
Implementation
PageBlockAnimation copyWith({
Animation? animation,
PageBlockCaption? caption,
bool? needAutoplay,
bool? hasSpoiler,
}) => PageBlockAnimation(
animation: animation ?? this.animation,
caption: caption ?? this.caption,
needAutoplay: needAutoplay ?? this.needAutoplay,
hasSpoiler: hasSpoiler ?? this.hasSpoiler,
);