clearGattCache method

Future<Result<Unit, GenericFailure<ClearGattCacheError>?>> clearGattCache(
  1. String deviceId
)

Clears GATT attribute cache on Android using undocumented API. This method should not be implemented for other platforms.

Implementation

Future<Result<Unit, GenericFailure<ClearGattCacheError>?>> clearGattCache(
    String deviceId) {
  throw UnimplementedError('clearGattCache() has not been implemented.');
}