GetPathsResponse constructor

GetPathsResponse({
  1. Iterable<Path>? paths,
})

Implementation

factory GetPathsResponse({
  $core.Iterable<Path>? paths,
}) {
  final $result = create();
  if (paths != null) {
    $result.paths.addAll(paths);
  }
  return $result;
}