ApiPrivateKey.fromValue constructor
key ==> valor da chave
Implementation
factory ApiPrivateKey.fromValue({
required String key,
required String fingerprint,
}) {
key = key.replaceAll(regExpForClearKey, '');
return ApiPrivateKey._(
key: key,
keyBytes: key.base64ToBytes,
fingerprint: fingerprint,
);
}