ListPopBackResponse_ constructor

ListPopBackResponse_({
  1. ListPopBackResponse___Found? found,
  2. ListPopBackResponse___Missing? missing,
})

Implementation

factory ListPopBackResponse_({
  ListPopBackResponse___Found? found,
  ListPopBackResponse___Missing? missing,
}) {
  final $result = create();
  if (found != null) {
    $result.found = found;
  }
  if (missing != null) {
    $result.missing = missing;
  }
  return $result;
}