copyWithout method

DeviceUpdateData copyWithout({
  1. bool displayName = false,
})

Implementation

DeviceUpdateData copyWithout({
  bool displayName = false,
}) {
  return DeviceUpdateData(
    displayName: displayName ? null : this.displayName,
    address: address,
  );
}