nixrajput/cloudinary-dart

View on GitHub
lib/src/enums/cloudinary_resource_type.dart

Summary

Maintainability
Test Coverage
/// CloudinaryResponseType enum is used to specify the type of the resource
enum CloudinaryResourceType {
  /// The [image] type
  image,

  /// The [raw] type
  raw,

  /// The [video] type
  video,

  /// The [auto] type
  auto,
}