updateTabs method
Updates the tabs list in-place (mirrors CPTabBarTemplate.updateTemplates).
Implementation
void updateTabs(List<AATemplate> newTabs) {
final copy = List<AATemplate>.from(newTabs);
tabs
..clear()
..addAll(copy);
}
Updates the tabs list in-place (mirrors CPTabBarTemplate.updateTemplates).
void updateTabs(List<AATemplate> newTabs) {
final copy = List<AATemplate>.from(newTabs);
tabs
..clear()
..addAll(copy);
}