copyWith method

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

Implementation

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