isPackageInstalled static method

Future<bool> isPackageInstalled()

Implementation

static Future<bool> isPackageInstalled() async {
  final result = await _channel.invokeMethod('isPackageInstalled');

  ExceptionHandler.checkException(result);

  return result == true;
}