InternalAppSharingArtifact.fromJson constructor

InternalAppSharingArtifact.fromJson(
  1. Map json_
)

Implementation

InternalAppSharingArtifact.fromJson(core.Map json_)
    : this(
        certificateFingerprint: json_.containsKey('certificateFingerprint')
            ? json_['certificateFingerprint'] as core.String
            : null,
        downloadUrl: json_.containsKey('downloadUrl')
            ? json_['downloadUrl'] as core.String
            : null,
        sha256: json_.containsKey('sha256')
            ? json_['sha256'] as core.String
            : null,
      );