copyWith method

SearchStickerSets copyWith({
  1. StickerType? stickerType,
  2. String? query,
})

Implementation

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