UploadAttachmentResponse.fromJson constructor
UploadAttachmentResponse.fromJson(
- 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,
);