copyWith method

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

Implementation

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