createAccident method
CancelableOperation<AddEventResult>
createAccident(
- GeoPoint location,
- LaneEnumSet lanes,
- String description
Создание события "ДТП".
- Parameter location: Местоположение события.
- Parameter lanes: Полосы дороги, затрагиваемые событием.
- Parameter description: Пользовательское описание события.
Implementation
CancelableOperation<AddEventResult> createAccident(
GeoPoint location,
LaneEnumSet lanes,
String description
) {
var _a1 = location._copyFromDartTo_CGeoPoint();
var _a2 = lanes._copyFromDartTo_COptionSet_CLane();
var _a3 = description._copyFromDartTo_CString();
_CFuture_CAddEventResult res = _CRoadEventManager_createAccident_CGeoPoint_COptionSet_CLane_CString(_CRoadEventManagerMakeDefault().._impl=_self, _a1, _a2, _a3);
_a3._releaseIntermediate();
final t = res._toDart();
res._releaseIntermediate();
return t;
}