type property

Implementation

static final type = Lens<GitPackageDependency, DependencyType>(
  (typeContainer) => typeContainer.type,
  (typeContainer, type) => typeContainer.copyWith(type: type),
);