buildDrawOrder method
inherited
Implementation
void buildDrawOrder(
List<Drawable> drawables, DrawRules rules, List<DrawRules> allRules) {
for (final child in children) {
if (child is ContainerComponent) {
child.buildDrawOrder(drawables, rules, allRules);
}
}
}