copyWith method
Implementation
WebApiModulesBillingBillingCreateInvoiceRequest copyWith(
{String? orderId, DateTime? periodStart, DateTime? periodEnd}) {
return WebApiModulesBillingBillingCreateInvoiceRequest(
orderId: orderId ?? this.orderId,
periodStart: periodStart ?? this.periodStart,
periodEnd: periodEnd ?? this.periodEnd);
}