copyWith method

  1. @override
InlineQueryResultAnimation copyWith({
  1. String? id,
  2. Animation? animation,
  3. String? title,
})
override

Implementation

@override
InlineQueryResultAnimation copyWith({
  String? id,
  Animation? animation,
  String? title,
}) => InlineQueryResultAnimation(
  id: id ?? this.id,
  animation: animation ?? this.animation,
  title: title ?? this.title,
);