ChatAttachmentConsentModel.fromJson constructor

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

Implementation

factory ChatAttachmentConsentModel.fromJson(Map<String, dynamic> json) {
  return ChatAttachmentConsentModel(
    chatAttachmentDownloadConsent: json['chat_attachment_download_consent'],
  );
}