iosDeleteCollection method
Implementation
Future<bool> iosDeleteCollection(AssetPathEntity path) async {
final Map<dynamic, dynamic>? result = await _channel.invokeMethod(
PMConstants.mDeleteAlbum,
<String, dynamic>{
'id': path.id,
'type': path.albumType,
},
);
return result?['errorMsg'] == null;
}