trackIdField property

String trackIdField

The field name that defines the track ID.

Values in the track ID field uniquely identify individual objects to allow observations of the same object at different times to be represented by different features in the layer.

Implementation

String get trackIdField {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_LayerTimeInfo_getTrackIdField(
        _handle, errorHandler);
  });
  return stringHandle.toDartString();
}