copyWith method

SearchStickers copyWith({
  1. String? emoji,
  2. int? limit,
})

Implementation

SearchStickers copyWith({
  String? emoji,
  int? limit,
}) => SearchStickers(
  emoji: emoji ?? this.emoji,
  limit: limit ?? this.limit,
);