copyWith method

WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenResponseErpIntegration copyWith({
  1. String? integAccessEndpoint,
  2. String? integAccessToken,
  3. String? integSourceId,
})

Implementation

WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenResponseErpIntegration copyWith({
  String? integAccessEndpoint,
  String? integAccessToken,
  String? integSourceId,
}) {
  return WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenResponseErpIntegration(
    integAccessEndpoint: integAccessEndpoint ?? this.integAccessEndpoint,
    integAccessToken: integAccessToken ?? this.integAccessToken,
    integSourceId: integSourceId ?? this.integSourceId,
  );
}