copyWith method
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,
);