syncSelectedAssetsWhenPop method
- @Deprecated('The method is not used by the package anymore')
Sync selected assets currently with asset picker provider. 在预览中当前已选的图片同步到选择器的状态
Implementation
@Deprecated('The method is not used by the package anymore')
Future<bool> syncSelectedAssetsWhenPop() async {
if (provider?.currentlySelectedAssets != null) {
selectorProvider?.selectedAssets = provider!.currentlySelectedAssets;
}
return true;
}