SortedSetFetchResponse_ constructor

SortedSetFetchResponse_({
  1. SortedSetFetchResponse___Found? found,
  2. SortedSetFetchResponse___Missing? missing,
})

Implementation

factory SortedSetFetchResponse_({
  SortedSetFetchResponse___Found? found,
  SortedSetFetchResponse___Missing? missing,
}) {
  final $result = create();
  if (found != null) {
    $result.found = found;
  }
  if (missing != null) {
    $result.missing = missing;
  }
  return $result;
}