copyWith method

Implementation

WebApiModulesUtilitiesGLDistributionRefreshGLHistoryRequest copyWith(
    {DateTime? fromDate, DateTime? toDate}) {
  return WebApiModulesUtilitiesGLDistributionRefreshGLHistoryRequest(
      fromDate: fromDate ?? this.fromDate, toDate: toDate ?? this.toDate);
}