disconnectButton method

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

disconnect a button to stop using

Implementation

Future<bool?> disconnectButton(String buttonUuid) async {
  // disconnect this button then please
  return _channel
      .invokeMethod<bool>(_methodNameDisconnectButton, [buttonUuid]);
}