setTextIgnorePlacement method

Future<void> setTextIgnorePlacement(
  1. bool value
)

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

Implementation

Future<void> setTextIgnorePlacement(bool value) async {
  _textIgnorePlacement = value;
  await _rebuildLayers();
}