currTab property

int? currTab

Implementation

int? get currTab => _currTab;
void currTab=(int? currTab)

Implementation

set currTab(int? currTab) {
  if (currTab == _currTab) return;

  _currTab = currTab;
  notifyListeners();
}