copyWith method

SetStickerKeywords copyWith({
  1. InputFile? sticker,
  2. List<String>? keywords,
})

Implementation

SetStickerKeywords copyWith({
  InputFile? sticker,
  List<String>? keywords,
}) =>
    SetStickerKeywords(
      sticker: sticker ?? this.sticker,
      keywords: keywords ?? this.keywords,
    );