setUIConfig method

Future<void> setUIConfig(
  1. AuthMeUIConfig uiConfig
)

Implementation

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