decode static method
Implementation
static DecryptConfig decode(Object result) {
result as List<Object?>;
return DecryptConfig(
promptSubtitle: result[0] as String?,
promptDescription: result[1] as String?,
cancelButtonText: result[2] as String?,
allowDeviceCredentials: result[3] as bool?,
shouldMigrate: result[4] as bool?,
fallbackOptions: (result[5] as List<Object?>?)
?.cast<BiometricFallbackOption?>(),
);
}