endTimeField property
The name of the field that contains the end time for each feature in the layer.
This is available for feature data that has a start and end time stored in two separate fields, where a feature's time is valid for a duration between the start time and the end time.
Implementation
String get endTimeField {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_LayerTimeInfo_getEndTimeField(
_handle, errorHandler);
});
return stringHandle.toDartString();
}