checkIsArCoreInstalled static method

dynamic checkIsArCoreInstalled()

Implementation

static checkIsArCoreInstalled() async {
  final bool arcoreInstalled = await MethodChannel(UTILS_CHANNEL_NAME)
      .invokeMethod('checkIfARCoreServicesInstalled');
  return arcoreInstalled;
}