deleteWithIds method

Future<List<String>> deleteWithIds(
  1. List<String> ids
)

All assets will be deleted. On iOS, assets in all albums will be deleted, not just the gallery you selected.

Implementation

Future<List<String>> deleteWithIds(List<String> ids) async {
  return _plugin.deleteWithIds(ids);
}