copyWith method

SearchStickers copyWith({
  1. StickerType? stickerType,
  2. String? emojis,
  3. int? limit,
})

Implementation

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