Input$PackageSourceInput constructor
Implementation
factory Input$PackageSourceInput({
String? name,
required String url,
String? local_path,
}) => Input$PackageSourceInput._({
if (name != null) r'name': name,
r'url': url,
if (local_path != null) r'local_path': local_path,
});