forgetButton method

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

have the manager forget the button (so you can scan again and connect again)

Implementation

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