cancelListenToFlic2Button method

Future<bool?> cancelListenToFlic2Button(
  1. String buttonUuid
)

stop listening to a button (not iOS)

Implementation

Future<bool?> cancelListenToFlic2Button(String buttonUuid) async {
  // scan for flic 2 buttons then please
  return _channel
      .invokeMethod<bool>(_methodNameStopListenToFlic2, [buttonUuid]);
}