cloudinary_public 0.2.0 copy "cloudinary_public: ^0.2.0" to clipboard
cloudinary_public: ^0.2.0 copied to clipboard

outdated

This package allows you to upload media files directly to cloudinary, without exposing your apiKey or secretKey.

cloudinary_public #

Build Status Coverage Status

This package allows you to upload media files directly to cloudinary, without exposing your apiKey or secretKey.

Getting started #

Add the dependency cloudinary_public: ^0.X.X (find recent version) to your project and start using it:

import 'package:cloudinary_public/cloudinary_public.dart';

Using Image Picker Plugin #

var image = await ImagePicker.pickImage(source: ImageSource.camera);

CloudinaryResponse response = await cloudinary.uploadFile(
    file: image,
    resourceType: CloudinaryResourceType.Image,
    filename: image.path, // optional if cache is false
);

print(response.secureUrl);

Using Multi Image Picker Plugin #

final data = await asset.getByteData();

CloudinaryResponse cloudinaryResponse = await cloudinary.uploadFile(
    byteData: data,
    resourceType: CloudinaryResourceType.Image,
    filename: asset.identifier, // optional if cache is false
);

print(response.secureUrl);
110
likes
0
pub points
95%
popularity

Publisher

verified publisherdjade.net

This package allows you to upload media files directly to cloudinary, without exposing your apiKey or secretKey.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

dio, flutter

More

Packages that depend on cloudinary_public