updateConfiguration static method

Future<bool> updateConfiguration(
  1. FlutterUxConfig config
)

This call is available only for IOS portion of the SDK so not sure will work on Android.

Implementation

static Future<bool> updateConfiguration(FlutterUxConfig config) async {
  final bool? status = await _channel
      .invokeMethod<bool>('updateConfiguration', {"config": config.toJson()});
  return status!;
}