clearSymbols method
Removes all symbols from the map added with the addSymbol or addSymbols methods.
Change listeners are notified once all symbols have been removed on the platform side.
The returned Future completes once listeners have been notified.
Implementation
Future<void> clearSymbols() async {
symbolManager!.clear();
notifyListeners();
}