UploadAttachmentResponse.fromJson constructor

UploadAttachmentResponse.fromJson(
  1. Map json_
)

Implementation

UploadAttachmentResponse.fromJson(core.Map json_)
  : this(
      attachmentDataRef:
          json_.containsKey('attachmentDataRef')
              ? AttachmentDataRef.fromJson(
                json_['attachmentDataRef']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );