setSymbolIconIgnorePlacement method

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

Implementation

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