setupIndication method
Implementation
@override
Future<bool> setupIndication({required String characteristicUuid}) async {
final state = await methodChannel
.invokeMethod("setupIndication", {"characteristicUuid": characteristicUuid}).recoverBTException();
return state as bool? ?? false;
}