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 {
  return startWithConfiguration(FlutterUxConfig(userAppKey: key));
}