copyWithWrapped method
Implementation
SIPTrunkCredentials copyWithWrapped(
{Wrapped<String>? username, Wrapped<String>? password}) {
return SIPTrunkCredentials(
username: (username != null ? username.value : this.username),
password: (password != null ? password.value : this.password));
}