updates property
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
List<Update> get updates {
try {
if (rawData["updates"] is List == false) {
return [];
}
return (rawData["updates"] as List).map((e) => Update(e as Map)).toList().cast<Update>();
} catch (e) {
return [];
}
}