copyWith method

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

Implementation

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