UserOwnedGrafeasNote.fromJson constructor

UserOwnedGrafeasNote.fromJson(
  1. Map json_
)

Implementation

UserOwnedGrafeasNote.fromJson(core.Map json_)
  : this(
      delegationServiceAccountEmail:
          json_['delegationServiceAccountEmail'] as core.String?,
      noteReference: json_['noteReference'] as core.String?,
      publicKeys:
          (json_['publicKeys'] as core.List?)
              ?.map(
                (value) => AttestorPublicKey.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );