SourceCodeInfo constructor

SourceCodeInfo({
  1. Iterable<SourceCodeInfo_Location>? location,
})

Implementation

factory SourceCodeInfo({
  $core.Iterable<SourceCodeInfo_Location>? location,
}) {
  final $result = create();
  if (location != null) {
    $result.location.addAll(location);
  }
  return $result;
}