copyWith method

ChatPhotoStickerTypeRegularOrMask copyWith({
  1. int? stickerSetId,
  2. int? stickerId,
})

Implementation

ChatPhotoStickerTypeRegularOrMask copyWith({
  int? stickerSetId,
  int? stickerId,
}) => ChatPhotoStickerTypeRegularOrMask(
  stickerSetId: stickerSetId ?? this.stickerSetId,
  stickerId: stickerId ?? this.stickerId,
);