SignatureInfo.fromJson constructor
      
      SignatureInfo.fromJson(
    
    
- Map json_
 
Implementation
SignatureInfo.fromJson(core.Map json_)
  : this(
      customerKmsKeyVersion: json_['customerKmsKeyVersion'] as core.String?,
      googleKeyAlgorithm: json_['googleKeyAlgorithm'] as core.String?,
      googlePublicKeyPem: json_['googlePublicKeyPem'] as core.String?,
      serializedApprovalRequest:
          json_['serializedApprovalRequest'] as core.String?,
      signature: json_['signature'] as core.String?,
    );