ListPopFrontResponse_ constructor
ListPopFrontResponse_({
- ListPopFrontResponse___Found? found,
- ListPopFrontResponse___Missing? missing,
Implementation
factory ListPopFrontResponse_({
ListPopFrontResponse___Found? found,
ListPopFrontResponse___Missing? missing,
}) {
final $result = create();
if (found != null) {
$result.found = found;
}
if (missing != null) {
$result.missing = missing;
}
return $result;
}