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