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