NotifyWhenUploadedOutput.fromJson constructor
Implementation
factory NotifyWhenUploadedOutput.fromJson(Map<String, dynamic> json) {
return NotifyWhenUploadedOutput(
fileShareARN: json['FileShareARN'] as String?,
notificationId: json['NotificationId'] as String?,
);
}