updateDottedLine method
- bool dottedLine
更新是否设置虚线
Android独有
Implementation
Future<bool> updateDottedLine(bool dottedLine) async {
if (this.dottedLine == dottedLine) {
return true;
}
bool ret = await BMFMapDispatcherFactory.instance.overlayDispatcher
.updatePolylineMember(this.methodChannel,
{'id': this.Id, 'member': 'dottedLine', 'value': dottedLine});
if (ret) {
this.dottedLine = dottedLine;
}
return ret;
}