CompareAndSwapResponse constructor

CompareAndSwapResponse({
  1. bool? updated,
  2. Property? value,
})

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;
}