deletePhotos method
Delete Photos.
ID: 87cf7f2f.
Implementation
Future<Result<Vector<int>>> deletePhotos({
required List<InputPhotoBase> id,
}) async {
// Preparing the request.
final request = PhotosDeletePhotos(id: id);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._toVector<int>();
}