addKeyPair method
Implementation
MedTechApiBuilder addKeyPair(String keyId, Uint8List privateKey) {
var keyPair = RSAKeypair(RSAPrivateKey.fromString(base64.encoder.convert(privateKey)));
_rsaKeyPairs[keyId] = keyPair;
return this;
}
MedTechApiBuilder addKeyPair(String keyId, Uint8List privateKey) {
var keyPair = RSAKeypair(RSAPrivateKey.fromString(base64.encoder.convert(privateKey)));
_rsaKeyPairs[keyId] = keyPair;
return this;
}