copyWith method
Implementation
@override
InlineQueryResultSticker copyWith({
  String? id,
  Sticker? sticker,
}) => InlineQueryResultSticker(
  id: id ?? this.id,
  sticker: sticker ?? this.sticker,
);@override
InlineQueryResultSticker copyWith({
  String? id,
  Sticker? sticker,
}) => InlineQueryResultSticker(
  id: id ?? this.id,
  sticker: sticker ?? this.sticker,
);