PubspecLock constructor

PubspecLock(
  1. String stringContent
)

Creates an instance of PubspecLock

Implementation

PubspecLock(String stringContent) {
  _content = loadYaml(stringContent);
  _readPackages();
}