NpmPackage.fromJson constructor

NpmPackage.fromJson(
  1. Map json_
)

Implementation

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