startWithConfiguration static method

Future<bool> startWithConfiguration(
  1. FlutterUxConfig config
)

This method is used to as a starting point for configuring and starting point for setting up UXCam SDK.

config is a FlutterUxConfig Object

Implementation

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