decode static method
Implementation
static KeyInfo decode(Object result) {
result as List<Object?>;
return KeyInfo(
exists: result[0] as bool?,
isValid: result[1] as bool?,
algorithm: result[2] as String?,
keySize: result[3] as int?,
isHybridMode: result[4] as bool?,
publicKey: result[5] as String?,
decryptingPublicKey: result[6] as String?,
decryptingAlgorithm: result[7] as String?,
decryptingKeySize: result[8] as int?,
);
}