totalAssetsCount property

int? totalAssetsCount
inherited

Total count for assets. 资源总数

Implementation

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

Implementation

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