NpmPackage.fromJson constructor
NpmPackage.fromJson(
- Map json_
Implementation
NpmPackage.fromJson(core.Map json_)
: this(
packagePath: json_.containsKey('packagePath')
? json_['packagePath'] as core.String
: null,
repository: json_.containsKey('repository')
? json_['repository'] as core.String
: null,
);