SetFetchResponse_ constructor
SetFetchResponse_({
- SetFetchResponse___Found? found,
- 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;
}