SortedSetLengthResponse_ constructor

SortedSetLengthResponse_({
  1. SortedSetLengthResponse___Found? found,
  2. SortedSetLengthResponse___Missing? missing,
})

Implementation

factory SortedSetLengthResponse_({
  SortedSetLengthResponse___Found? found,
  SortedSetLengthResponse___Missing? missing,
}) {
  final $result = create();
  if (found != null) {
    $result.found = found;
  }
  if (missing != null) {
    $result.missing = missing;
  }
  return $result;
}