getFormatListOrGrid method
dynamic
getFormatListOrGrid()
Implementation
getFormatListOrGrid() {
_isList = getIsAListView();
if (_isList) {
_iconListOrGrid = Icons.grid_on;
_labelFormatListOrGrid = 'label_format_grid'.tr;
} else {
_iconListOrGrid = Icons.view_list;
_labelFormatListOrGrid = 'label_format_list'.tr;
}
update();
}