DictionaryFetchResponse_ constructor

DictionaryFetchResponse_({
  1. DictionaryFetchResponse___Found? found,
  2. DictionaryFetchResponse___Missing? missing,
})

Implementation

factory DictionaryFetchResponse_({
  DictionaryFetchResponse___Found? found,
  DictionaryFetchResponse___Missing? missing,
}) {
  final $result = create();
  if (found != null) {
    $result.found = found;
  }
  if (missing != null) {
    $result.missing = missing;
  }
  return $result;
}