@@ -53,7 +53,8 @@ class RssFeed {
53
53
throw new ArgumentError ("channel not found" );
54
54
}
55
55
var title = xmlGetString (channelElement, "title" );
56
- var description = xmlGetString (channelElement, "description" , strict: false );
56
+ var description =
57
+ xmlGetString (channelElement, "description" , strict: false );
57
58
var link = xmlGetString (channelElement, "link" , strict: false );
58
59
59
60
var feeds = channelElement.findElements ("item" ).map ((element) {
@@ -93,12 +94,14 @@ class RssFeed {
93
94
}).toList ();
94
95
}
95
96
96
- var lastBuildDate = xmlGetString (channelElement, "lastBuildDate" , strict: false );
97
+ var lastBuildDate =
98
+ xmlGetString (channelElement, "lastBuildDate" , strict: false );
97
99
var language = xmlGetString (channelElement, "language" , strict: false );
98
100
var generator = xmlGetString (channelElement, "generator" , strict: false );
99
101
var copyright = xmlGetString (channelElement, "copyright" , strict: false );
100
102
var docs = xmlGetString (channelElement, "docs" , strict: false );
101
- var managingEditor = xmlGetString (channelElement, "managingEditor" , strict: false );
103
+ var managingEditor =
104
+ xmlGetString (channelElement, "managingEditor" , strict: false );
102
105
var rating = xmlGetString (channelElement, "rating" , strict: false );
103
106
var webMaster = xmlGetString (channelElement, "webMaster" , strict: false );
104
107
var ttl = xmlGetInt (channelElement, "ttl" , strict: false );
0 commit comments