copyWith method

  1. @override
InlineQueryResultSticker copyWith({
  1. String? id,
  2. Sticker? sticker,
})
override

Implementation

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