QueryWhereIsByCreatorResponse constructor Null safety
Implementation
factory QueryWhereIsByCreatorResponse({
$core.int? code,
$core.Iterable<$0.WhereIs>? whereIs,
$2.PageResponse? pagination,
}) {
final _result = create();
if (code != null) {
_result.code = code;
}
if (whereIs != null) {
_result.whereIs.addAll(whereIs);
}
if (pagination != null) {
_result.pagination = pagination;
}
return _result;
}