getIcons1 method
Implementation
List<Icon> getIcons1() {
var icons = <Icon>[];
if (fullscreen) icons.add(const Icon(Icons.fullscreen));
if (codeview) icons.add(const Icon(Icons.code));
if (undo) icons.add(const Icon(Icons.undo));
if (redo) icons.add(const Icon(Icons.redo));
if (help) icons.add(const Icon(Icons.help_outline));
return icons;
}