QueryWhereIsByCreatorResponse constructor Null safety

QueryWhereIsByCreatorResponse(
  1. {int? code,
  2. Iterable<WhereIs>? whereIs}
)

Implementation

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