startTimeField property

String startTimeField

The name of the field that contains the start time for each feature in the layer.

This is available for feature data that has time stored in either a single field where a feature's time is valid for an instant in time, or in two fields where a feature's time is valid for a duration between the start time and the end time.

Implementation

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