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