CompareAndSwapResponse constructor
Implementation
factory CompareAndSwapResponse({
$core.bool? updated,
Property? value,
}) {
final _result = create();
if (updated != null) {
_result.updated = updated;
}
if (value != null) {
_result.value = value;
}
return _result;
}