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