ListLengthResponse_ constructor
ListLengthResponse_({
- ListLengthResponse___Found? found,
- ListLengthResponse___Missing? missing,
Implementation
factory ListLengthResponse_({
ListLengthResponse___Found? found,
ListLengthResponse___Missing? missing,
}) {
final $result = create();
if (found != null) {
$result.found = found;
}
if (missing != null) {
$result.missing = missing;
}
return $result;
}