copyWith method

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

Implementation

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