copyWith method

  1. @override
UpdateStickerSet copyWith({
  1. StickerSet? stickerSet,
  2. dynamic extra,
  3. int? clientId,
})
override

Implementation

@override
UpdateStickerSet copyWith({
  StickerSet? stickerSet,
  dynamic extra,
  int? clientId,
}) => UpdateStickerSet(
  stickerSet: stickerSet ?? this.stickerSet,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);