copyWith method

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

Implementation

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