setSymbolTextIgnorePlacement method

Future<void> setSymbolTextIgnorePlacement(
  1. bool enable
)

If true, other symbols can be visible even if they collide with the text.

Implementation

Future<void> setSymbolTextIgnorePlacement(bool enable) async {
  await symbolManager?.setTextIgnorePlacement(enable);
}