StickerSets constructor

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

Represents a list of sticker sets

Implementation

const StickerSets({
  required this.totalCount,
  required this.sets,
  this.extra,
  this.clientId,
});