Flutter
To change the existing localization, you can use the localizationDictionary property provided by the Face SDK. This will remap any string value found in the native API.
To see all the localization keys, explore the FaceSDK.strings file at ios/Pods/FaceSDK/FaceSDK.xcframework/ios-arm64/FaceSDK.framework/FaceSDK.bundle/en.lproj/FaceSDK.strings.
See the example of how you can override any existing localization provided by the Face SDK:
FaceSDK.instance.localizationDictionary = {
"livenessGuide.head": "My first custom string",
"livenessGuide.button": "My second custom string"
};