copyWith method

GetTrendingStickerSets copyWith({
  1. StickerType? stickerType,
  2. int? offset,
  3. int? limit,
})

Implementation

GetTrendingStickerSets copyWith({
  StickerType? stickerType,
  int? offset,
  int? limit,
}) =>
    GetTrendingStickerSets(
      stickerType: stickerType ?? this.stickerType,
      offset: offset ?? this.offset,
      limit: limit ?? this.limit,
    );