initWithOptions method

Future<void> initWithOptions(
  1. Map<String, dynamic> configMap
)

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;
  }
}