copyWith method
- String? displayName,
- AddressDTO? address,
- ConnectionTypeDTO? connectionType,
Implementation
DeviceUpdateV3Body copyWith(
{String? displayName,
AddressDTO? address,
enums.ConnectionTypeDTO? connectionType}) {
return DeviceUpdateV3Body(
displayName: displayName ?? this.displayName,
address: address ?? this.address,
connectionType: connectionType ?? this.connectionType);
}