copyWith method

OncueImportDeviceV3Body copyWith({
  1. String? serialNumber,
  2. String? displayName,
  3. AddressDTO? address,
})

Implementation

OncueImportDeviceV3Body copyWith(
    {String? serialNumber, String? displayName, AddressDTO? address}) {
  return OncueImportDeviceV3Body(
      serialNumber: serialNumber ?? this.serialNumber,
      displayName: displayName ?? this.displayName,
      address: address ?? this.address);
}