static Future<bool> isPackageInstalled() async { final result = await _channel.invokeMethod('isPackageInstalled'); ExceptionHandler.checkException(result); return result == true; }