disableCharacteristicIndicate method

  1. @override
Future<bool> disableCharacteristicIndicate({
  1. required String serviceUuid,
  2. required String charUuid,
})
override

Tries to disable the specified characteristic to indicate. @param serviceUuid UUID of the service the characteristic belongs to. @param charUuid UUID of the characteristic to enable notify for.

Implementation

@override
Future<bool> disableCharacteristicIndicate(
    {required String serviceUuid, required String charUuid}) async {
  // TODO: implement disableCharacteristicIndicate
  throw UnsupportedError("disableCharacteristicIndicate not yet supported");
}