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