updateDottedLine method

Future<bool> updateDottedLine (
  1. bool dottedLine
)

更新是否设置虚线

Android独有

Implementation

Future<bool> updateDottedLine(bool dottedLine) async {
  this.dottedLine = dottedLine;

  return await BMFMapDispatcherFactory.instance
      .getOverlayDispatcher()
      .updateOverlayMemberDispatch(this.getMethodChannel(), {
    'id': this.getId(),
    'member': 'dottedLine',
    'value': dottedLine,
  });
}