QueryWhatIsResponse constructor Null safety
Implementation
factory QueryWhatIsResponse({
$core.int? code,
$9.WhatIs? whatIs,
$5.Schema? schema,
}) {
final _result = create();
if (code != null) {
_result.code = code;
}
if (whatIs != null) {
_result.whatIs = whatIs;
}
if (schema != null) {
_result.schema = schema;
}
return _result;
}