copyWithWrapped method
Implementation
AlexaDevice copyWithWrapped(
{Wrapped<String?>? deviceID,
Wrapped<Map<String, dynamic>?>? supportedInterfaces,
Wrapped<String?>? persistentEndpointID}) {
return AlexaDevice(
deviceID: (deviceID != null ? deviceID.value : this.deviceID),
supportedInterfaces: (supportedInterfaces != null
? supportedInterfaces.value
: this.supportedInterfaces),
persistentEndpointID: (persistentEndpointID != null
? persistentEndpointID.value
: this.persistentEndpointID));
}