totalAssetsCount property

int totalAssetsCount

Implementation

int get totalAssetsCount => _totalAssetsCount;
void totalAssetsCount=(int value)

Implementation

set totalAssetsCount(int value) {
  if (value == _totalAssetsCount) {
    return;
  }
  _totalAssetsCount = value;
  notifyListeners();
}