startWithApiKey method Null safety
- String apiKey,
- List<
String> stores, - String? userId,
- PLYLogLevel logLevel,
- PLYRunningMode runningMode
Implementation
static Future<bool> startWithApiKey(String apiKey, List<String> stores,
String? userId, PLYLogLevel logLevel, PLYRunningMode runningMode) async {
return await _channel.invokeMethod('startWithApiKey', <String, dynamic>{
'apiKey': apiKey,
'stores': stores,
'userId': userId,
'logLevel': logLevel.index,
'runningMode': runningMode.index
});
}