updateThined method
- bool isThined
更新polyline是否抽稀
Implementation
Future<bool> updateThined(bool isThined) async {
this.isThined = isThined;
return await BMFMapDispatcherFactory.instance
.getOverlayDispatcher()
.updateOverlayMemberDispatch(this.getMethodChannel(), {
'id': this.getId(),
'member': 'isThined',
'value': isThined,
});
}