imageAssets property

List<Asset> get imageAssets

Gets all image assets in this directory.

Implementation

List<Asset> get imageAssets {
  return assets.where((asset) => asset.isImage).toList();
}