copyWith method
Implementation
WebApiModulesAgentPurchaseOrderNextVendorInvoiceDefaultDatesResponse
copyWith({
int? status,
bool? success,
String? msg,
DateTime? billingStartDate,
DateTime? billingEndDate,
}) {
return WebApiModulesAgentPurchaseOrderNextVendorInvoiceDefaultDatesResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
billingStartDate: billingStartDate ?? this.billingStartDate,
billingEndDate: billingEndDate ?? this.billingEndDate,
);
}