MessageNotificationAttachment constructor

const MessageNotificationAttachment({
  1. required String identifier,
  2. required String type,
  3. required String url,
})

Implementation

const MessageNotificationAttachment({
  required this.identifier,
  required this.type,
  required this.url,
});