getStarted method

Future<bool> getStarted()

Return if the SDK is currently started.

Implementation

Future<bool> getStarted() async {
  try {
    return await _channel.invokeMethod(
      'getStarted',
    );
  } catch (e) {
    _log("Error: getStarted: $e");
    return Future.value(false);
  }
}