copyWith method

AddStickerToSet copyWith({
  1. int? userId,
  2. String? name,
  3. InputSticker? sticker,
})

Implementation

AddStickerToSet copyWith({
  int? userId,
  String? name,
  InputSticker? sticker,
}) => AddStickerToSet(
  userId: userId ?? this.userId,
  name: name ?? this.name,
  sticker: sticker ?? this.sticker,
);