DescribeAttachmentResponse.fromJson constructor
Implementation
factory DescribeAttachmentResponse.fromJson(Map<String, dynamic> json) {
return DescribeAttachmentResponse(
attachment: json['attachment'] != null
? Attachment.fromJson(json['attachment'] as Map<String, dynamic>)
: null,
);
}