DocumentNote.fromJson constructor

DocumentNote.fromJson(
  1. Map _json
)

Implementation

DocumentNote.fromJson(core.Map _json)
    : this(
        dataLicence: _json.containsKey('dataLicence')
            ? _json['dataLicence'] as core.String
            : null,
        spdxVersion: _json.containsKey('spdxVersion')
            ? _json['spdxVersion'] as core.String
            : null,
      );