toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (kmsKeyName != null) 'kmsKeyName': kmsKeyName!,
      if (kmsKeyServiceAccount != null)
        'kmsKeyServiceAccount': kmsKeyServiceAccount!,
      if (rawKey != null) 'rawKey': rawKey!,
      if (rsaEncryptedKey != null) 'rsaEncryptedKey': rsaEncryptedKey!,
      if (sha256 != null) 'sha256': sha256!,
    };