CloudinaryResponse.fromJsonMap constructor

CloudinaryResponse.fromJsonMap(
  1. Map<String, dynamic> map
)

Implementation

CloudinaryResponse.fromJsonMap(Map<String, dynamic> map)
    : originalFilename = map['original_filename'],
      createdAt = map['created_at'],
      secureUrl = map['secure_url'],
      publicId = map['public_id'],
      signature = map['signature'],
      url = map['url'];