copyWith method

SearchInstalledStickerSets copyWith({
  1. StickerType? stickerType,
  2. String? query,
  3. int? limit,
})

Implementation

SearchInstalledStickerSets copyWith({
  StickerType? stickerType,
  String? query,
  int? limit,
}) =>
    SearchInstalledStickerSets(
      stickerType: stickerType ?? this.stickerType,
      query: query ?? this.query,
      limit: limit ?? this.limit,
    );