enableCharacteristicIndicate method

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

Tries to enable 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> enableCharacteristicIndicate(
    {required String serviceUuid, required String charUuid}) {
  // TODO: implement enableCharacteristicIndicate
  throw UnsupportedError("enableCharacteristicIndicate not yet supported");
}