copyWith method

SearchStickers copyWith({
  1. StickerType? stickerType,
  2. String? emojis,
  3. String? query,
  4. List<String>? inputLanguageCodes,
  5. int? offset,
  6. int? limit,
})

Implementation

SearchStickers copyWith({
  StickerType? stickerType,
  String? emojis,
  String? query,
  List<String>? inputLanguageCodes,
  int? offset,
  int? limit,
}) => SearchStickers(
  stickerType: stickerType ?? this.stickerType,
  emojis: emojis ?? this.emojis,
  query: query ?? this.query,
  inputLanguageCodes: inputLanguageCodes ?? this.inputLanguageCodes,
  offset: offset ?? this.offset,
  limit: limit ?? this.limit,
);