copyWithWrapped method
Implementation
CreatePhoneNumberResponseModel copyWithWrapped(
{Wrapped<String>? phoneNumberId}) {
return CreatePhoneNumberResponseModel(
phoneNumberId:
(phoneNumberId != null ? phoneNumberId.value : this.phoneNumberId));
}