setupAndStartRecording static method

Future<void> setupAndStartRecording(
  1. SetupOptions options
)

Setups a plugin and starts recording api_key can be found in settings as "SDK key" for each project

Implementation

static Future<void> setupAndStartRecording(SetupOptions options) async {
  _channel.setMethodCallHandler(nativeMethodCallHandler);
  await _channel.invokeMethod('setupAndStartRecordingBridge',
      {"options": jsonEncode(options.toJson())});
}