GetAttachmentResponse.fromJson constructor

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

Implementation

factory GetAttachmentResponse.fromJson(Map<String, dynamic> json) {
  return GetAttachmentResponse(
    url: json['Url'] as String?,
    urlExpiry: json['UrlExpiry'] as String?,
  );
}