CloudinaryResponse constructor

CloudinaryResponse({
  1. required String assetId,
  2. required String publicId,
  3. required DateTime createdAt,
  4. required String url,
  5. required String secureUrl,
  6. required String originalFilename,
  7. required Map<String, dynamic> data,
  8. List<String> tags = const [],
  9. Map<String, dynamic> context = const {},
  10. bool fromCache = false,
})

Implementation

CloudinaryResponse({
  required this.assetId,
  required this.publicId,
  required this.createdAt,
  required this.url,
  required this.secureUrl,
  required this.originalFilename,
  required this.data,
  this.tags = const [],
  this.context = const {},
  this.fromCache = false,
});