SetFetchResponse_ constructor

SetFetchResponse_({
  1. SetFetchResponse___Found? found,
  2. SetFetchResponse___Missing? missing,
})

Implementation

factory SetFetchResponse_({
  SetFetchResponse___Found? found,
  SetFetchResponse___Missing? missing,
}) {
  final $result = create();
  if (found != null) {
    $result.found = found;
  }
  if (missing != null) {
    $result.missing = missing;
  }
  return $result;
}