copyWith method

DevicePinDTO copyWith({
  1. String? hashedPin,
})

Implementation

DevicePinDTO copyWith({String? hashedPin}) {
  return DevicePinDTO(hashedPin: hashedPin ?? this.hashedPin);
}