clearGattCache method

Future<void> clearGattCache()

Refresh ble services & characteristics (Android Only)

Implementation

Future<void> clearGattCache() {
  ensurePlatform(System.isAndroid, "clearGattCache");
  return invoke("clearGattCache", (p) => p.clearGattCache(remoteId), serialized: false);
}