PackageConfig constructor
- String? name,
- String? package,
- String? version,
- String? type,
- AppValidationStatus? status,
Implementation
factory PackageConfig({
  $core.String? name,
  $core.String? package,
  $core.String? version,
  $core.String? type,
  AppValidationStatus? status,
}) {
  final $result = create();
  if (name != null) {
    $result.name = name;
  }
  if (package != null) {
    $result.package = package;
  }
  if (version != null) {
    $result.version = version;
  }
  if (type != null) {
    $result.type = type;
  }
  if (status != null) {
    $result.status = status;
  }
  return $result;
}