NotificationAttachment.fromJson constructor

NotificationAttachment.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory NotificationAttachment.fromJson(Map<String, dynamic> json) {
  return NotificationAttachment(
    identifier: json['identifier'],
    url: json['url'],
    type: json['type'],
  );
}