deleteFiles method

  1. @Deprecated('Use [deleteResources] instead')
Future<CloudinaryResponse> deleteFiles({
  1. List<String>? publicIds,
  2. List<String>? urls,
  3. List<CloudinaryImage>? cloudinaryImages,
  4. String? prefix,
  5. bool? all,
  6. CloudinaryResourceType? resourceType,
  7. CloudinaryDeliveryType? deliveryType,
  8. bool? invalidate,
  9. Map<String, dynamic>? optParams,
})

Implementation

@Deprecated('Use [deleteResources] instead')
Future<CloudinaryResponse> deleteFiles(
        {List<String>? publicIds,
        List<String>? urls,
        List<CloudinaryImage>? cloudinaryImages,
        String? prefix,
        bool? all,
        CloudinaryResourceType? resourceType,
        CloudinaryDeliveryType? deliveryType,
        bool? invalidate,
        Map<String, dynamic>? optParams}) =>
    deleteResources(
      publicIds: publicIds,
      urls: urls,
      cloudinaryImages: cloudinaryImages,
      prefix: prefix,
      all: all,
      resourceType: resourceType,
      deliveryType: deliveryType,
      invalidate: invalidate,
    );