initSDK method

void initSDK()

Implementation

void initSDK() {
  try {
    _channel.invokeMethod('initSDK');
  } on PlatformException catch (e) {
    log(e.message ?? "Error in initSDK");
  }
}