connectButton method

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

connect a button for use

Implementation

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