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