hasChromeInstalled method

Future<bool> hasChromeInstalled()

Implementation

Future<bool> hasChromeInstalled() async {
  if (Platform.isAndroid) {
    return (await _channel.invokeMethod<bool?>("hasChromeInstalled",)) == true;
  }
  return false;
}