copyWith method

  1. @override
UpdateTrendingStickerSets copyWith({
  1. StickerType? stickerType,
  2. TrendingStickerSets? stickerSets,
  3. dynamic extra,
  4. int? clientId,
})
override

Implementation

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