initWithOptions method
Initialize the configuration and return to blackBox
Implementation
Future<void> initWithOptions(Map<String, dynamic> configMap) async {
try {
if (_behaviorCollector != null) {
await _behaviorCollector!.initWithOptions(configMap);
}
await TrustdeviceSePluginPlatform.instance.initWithOptions(configMap);
return;
} catch(e){
rethrow;
}
}