hasProcessableAssets method

bool hasProcessableAssets()

Returns whether there are any assets that need to be processed.

Implementation

bool hasProcessableAssets() {
  for (final List<dynamic> asset in assets.values) {
    if (asset[GraphIndex.assetState] != AssetState.processed.index) {
      return true;
    }
  }
  return false;
}