copyWith method

StickerSets copyWith({
  1. int? totalCount,
  2. List<StickerSetInfo>? sets,
  3. dynamic extra,
  4. int? clientId,
})

Implementation

StickerSets copyWith({
  int? totalCount,
  List<StickerSetInfo>? sets,
  dynamic extra,
  int? clientId,
}) => StickerSets(
  totalCount: totalCount ?? this.totalCount,
  sets: sets ?? this.sets,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);