copyWith method

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

Implementation

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