NotifyWhenUploadedOutput.fromJson constructor

NotifyWhenUploadedOutput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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