copyWithWrapped method

Implementation

WebApiModulesUtilitiesGLDistributionRefreshGLHistoryRequest copyWithWrapped(
    {Wrapped<DateTime?>? fromDate, Wrapped<DateTime?>? toDate}) {
  return WebApiModulesUtilitiesGLDistributionRefreshGLHistoryRequest(
      fromDate: (fromDate != null ? fromDate.value : this.fromDate),
      toDate: (toDate != null ? toDate.value : this.toDate));
}