setSymbolTextIgnorePlacement method

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

Implementation

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