copyWith method

  1. @override
UpdateInstalledStickerSets copyWith({
  1. StickerType? stickerType,
  2. List<int>? stickerSetIds,
  3. dynamic extra,
  4. int? clientId,
})
override

Implementation

@override
UpdateInstalledStickerSets copyWith({
  StickerType? stickerType,
  List<int>? stickerSetIds,
  dynamic extra,
  int? clientId,
}) =>
    UpdateInstalledStickerSets(
      stickerType: stickerType ?? this.stickerType,
      stickerSetIds: stickerSetIds ?? this.stickerSetIds,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );