uploadImage method

Future<CloudinaryResponse> uploadImage(
  1. String imagePath, {
  2. String? filename,
  3. String? folder,
})

Implementation

Future<CloudinaryResponse> uploadImage(String imagePath, {String? filename, String? folder}) async => _client.uploadImage(imagePath, imageFilename: filename, folder: folder);