currTab property
int?
get
currTab
Implementation
int? get currTab => _currTab;
set
currTab
(int? currTab)
Implementation
set currTab(int? currTab) {
if (currTab == _currTab) return;
_currTab = currTab;
notifyListeners();
}