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