setSymbolTextAllowOverlap method

  1. @override
Future<void> setSymbolTextAllowOverlap(
  1. bool enable
)
override

Implementation

@override
Future<void> setSymbolTextAllowOverlap(bool enable) async {
  try {
    await _channel
        .invokeMethod('symbolManager#textAllowOverlap', <String, dynamic>{
      'textAllowOverlap': enable,
    });
  } on PlatformException catch (e) {
    return new Future.error(e);
  }
}