setUIConfig method
Implementation
Future<void> setUIConfig(AuthMeUIConfig uiConfig) async {
try {
await _channel.invokeMethod('setUIConfig', {
'uiConfig': uiConfig.toMap(),
'showStatement': uiConfig.showStatement,
});
} on PlatformException catch (e) {
log("Failed to set UI config: ${e.message}");
rethrow;
}
}