SortedSetLengthByScoreResponse_ constructor

SortedSetLengthByScoreResponse_({
  1. SortedSetLengthByScoreResponse___Found? found,
  2. SortedSetLengthByScoreResponse___Missing? missing,
})

Implementation

factory SortedSetLengthByScoreResponse_({
  SortedSetLengthByScoreResponse___Found? found,
  SortedSetLengthByScoreResponse___Missing? missing,
}) {
  final $result = create();
  if (found != null) {
    $result.found = found;
  }
  if (missing != null) {
    $result.missing = missing;
  }
  return $result;
}