sections property
Implementation
List<Sections> get sections {
try {
if (rawData["sections"] is List == false) {
return [];
}
return (rawData["sections"] as List)
.map((e) => Sections(e as Map))
.toList()
.cast<Sections>();
} catch (e) {
return [];
}
}