copyWith method

WebApiModulesPluginsBoxedUpBoxedUpSignUpUserErp copyWith({
  1. String? integAccessEndpoint,
  2. String? integAccessToken,
  3. String? integSourceId,
  4. String? integUserId,
})

Implementation

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