isStarted method

Future<bool> isStarted()

Returns true if sdk is started

Implementation

Future<bool> isStarted() =>
    _channel.invokeMethod("isStarted").then((value) => value ?? false);