iosDeleteCollection method

Future<bool> iosDeleteCollection(
  1. AssetPathEntity path
)

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;
}