decode static method
Implementation
static IdentityDecryptResult decode(Object result) {
result as List<Object?>;
return IdentityDecryptResult(
decryptedData: result[0] as String?,
error: result[1] as String?,
code: result[2] as IdentityError?,
authenticationType: result[3] as IdentityAuthType?,
);
}