start method

Future<void> start(
  1. TalsecConfig config
)

Starts freeRASP with configuration provided in config.

Implementation

Future<void> start(TalsecConfig config) {
  _checkConfig(config);
  return methodChannel.invokeMethod(
    'start',
    {'config': jsonEncode(config.toJson())},
  );
}