copyWith method

  1. @override
UpdateTrendingStickerSets copyWith({
  1. StickerSets? stickerSets,
  2. dynamic extra,
  3. int? clientId,
})
override

Implementation

@override
UpdateTrendingStickerSets copyWith({
  StickerSets? stickerSets,
  dynamic extra,
  int? clientId,
}) => UpdateTrendingStickerSets(
  stickerSets: stickerSets ?? this.stickerSets,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);