NotificationAttachment constructor

const NotificationAttachment(
  1. String url,
  2. String fileName, {
  3. bool? showThumbnail = true,
})

Creates a NotificationAttachment with the given parameters.

Implementation

const NotificationAttachment(
  this.url,
  this.fileName, {
  this.showThumbnail = true,
});