getId method
Gets the unique identifier of the map object. Returns The unique identifier of the map object.
Example:
// Get object ID
int objectId = _circleMapObject!.id;
print("Circle object ID: $objectId");
Implementation
@override
int getId() {
final _getIdFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Int32 Function(Pointer<Void>, ),
int Function(Pointer<Void>, )
>('navigine_sdk_flutter_MapObject_getId'));
final __resultHandle = _getIdFfi(this.ptr, );
final _result = __resultHandle;
exception.checkCallResult();
return _result;
}