copyWith method
Implementation
WebApiModulesAgentProjectCreateQuoteFromProjectResponse copyWith({
int? status,
bool? success,
String? msg,
String? quoteId,
}) {
return WebApiModulesAgentProjectCreateQuoteFromProjectResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
quoteId: quoteId ?? this.quoteId,
);
}