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 = new Map(); data['message'] = this.message; data['error'] = this.error; data['quote_filepath'] = this.quoteFilepath; return data; } }