Link.atom constructor

Link.atom({
  1. required String href,
  2. required String title,
})

Implementation

Link.atom({
  required this.href,
  required String title,
}) : rel = "alternate",
     super(
       args: {
         "type": "application/atom+xml",
         "title": title,
       },
       children: [],
     );