QueryWhatIsByCreatorResponse constructor Null safety
- {int? code,
- Iterable<
WhatIs> ? whatIs, - Map<
String, SchemaDefinition> ? schemas}
Implementation
factory QueryWhatIsByCreatorResponse({
$core.int? code,
$core.Iterable<$9.WhatIs>? whatIs,
$core.Map<$core.String, $6.SchemaDefinition>? schemas,
}) {
final _result = create();
if (code != null) {
_result.code = code;
}
if (whatIs != null) {
_result.whatIs.addAll(whatIs);
}
if (schemas != null) {
_result.schemas.addAll(schemas);
}
return _result;
}