copyWith method

Implementation

WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenRequestUser copyWith({
  String? username,
  String? password,
  WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenRequestUserErp? erpIntegration,
}) {
  return WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenRequestUser(
    username: username ?? this.username,
    password: password ?? this.password,
    erpIntegration: erpIntegration ?? this.erpIntegration,
  );
}