hide method
Implementation
void hide({int? index, TxDropDownMenuHeaderStatus? status}) {
if (index != null && status != null) {
headerStatus[index] = status;
}
isExpand = false;
notifyListeners();
}
void hide({int? index, TxDropDownMenuHeaderStatus? status}) {
if (index != null && status != null) {
headerStatus[index] = status;
}
isExpand = false;
notifyListeners();
}