addButtons method
Implementation
void addButtons(List<String> buttons) {
DivElement buttonContainer = DivElement()..className = 'button-container';
buttonContainer.children.addAll([
for (final text in buttons)
ButtonElement()
..tabIndex = _tabIndex++
..classes.add('button-container__button')
..classes.add('focusable')
..text = text
]);
_content.children.add(buttonContainer);
}