class crmLeadDetailsGenerateQuotationSubmitResponse { String? message; String? error; String? quoteFilepath; crmLeadDetailsGenerateQuotationSubmitResponse({ this.message, this.error, this.quoteFilepath, }); crmLeadDetailsGenerateQuotationSubmitResponse.fromJson( Map json, ) { message = json['message']; error = json['error']; quoteFilepath = json['quote_filepath']; } Map toJson() { final Map data = {}; data['message'] = message; data['error'] = error; data['quote_filepath'] = quoteFilepath; return data; } }