updateWidth method
- int width
更新线宽
Implementation
Future<bool> updateWidth(int width) async {
if (width < 0) {
return false;
}
bool ret = await BMFMapDispatcherFactory.instance.overlayDispatcher
.updateCircleMember(this.methodChannel,
{'id': this.Id, 'member': 'width', 'value': width});
if (ret) {
this.width = width;
}
return ret;
}