copyWith method

StickerSets copyWith({
  1. int? totalCount,
  2. List<StickerSetInfo>? sets,
})

Implementation

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