PhotoUploadResponse constructor

PhotoUploadResponse({
  1. required bool success,
  2. required String url,
  3. required String path,
  4. required int size,
  5. required String fileType,
  6. required String photoType,
  7. required String uploadedAt,
  8. String? formattedMessage,
  9. String? usageTip,
})

Implementation

PhotoUploadResponse({
  required this.success,
  required this.url,
  required this.path,
  required this.size,
  required this.fileType,
  required this.photoType,
  required this.uploadedAt,
  this.formattedMessage,
  this.usageTip,
});