startWithKey static method

  1. @Deprecated('Use `startWithConfiguration`')
Future<bool> startWithKey(
  1. String key
)

Older implementation of starting UXCam SDK

key is String

Implementation

@Deprecated('Use `startWithConfiguration`')
static Future<bool> startWithKey(String key) async {
  final bool? status =
      await _channel.invokeMethod<bool>('startWithKey', {"key": key});
  return status!;
}