convertPaths static method
paths
文件地址转换 List
Implementation
static ExtendedAssetEntity? convertPaths(String path,
{AssetType assetsType = AssetType.image}) {
if (path.isNotEmpty) {
return ExtendedAssetEntity.fromPreviewed(
previewed: path, assetType: assetsType);
}
return null;
}