setUIConfig method
Implementation
Future<void> setUIConfig(AuthMeUIConfig uiConfig) async {
try {
await _channel.invokeMethod('setUIConfig', {
'uiConfig': uiConfig.toMap(),
'showStatement': uiConfig.showStatement,
});
} on PlatformException catch (_) {
rethrow;
}
}