unregister method
Removes the tool. Calling this more than once has no effect.
Implementation
Future<void> unregister() async {
if (!_isRegistered) return;
_isRegistered = false;
await _unregister();
}
Removes the tool. Calling this more than once has no effect.
Future<void> unregister() async {
if (!_isRegistered) return;
_isRegistered = false;
await _unregister();
}