addAttachment method
Add an attachment to the push notification
Implementation
JetNotifications addAttachment(
String url,
String fileName, {
bool? showThumbnail,
}) {
_attachments.add(
_JetNotificationAttachments(url, fileName, showThumbnail: showThumbnail),
);
return this;
}