copyWith method
Implementation
@override
PushMessageContentSticker copyWith({
Sticker? sticker,
String? emoji,
bool? isPinned,
}) => PushMessageContentSticker(
sticker: sticker ?? this.sticker,
emoji: emoji ?? this.emoji,
isPinned: isPinned ?? this.isPinned,
);