username property
The username of the feature table.
The username is used for ownership-based access control (OBAC) and editor tracking purposes.
Implementation
String get username {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ArcGISFeatureTable_getUsername(
_handle, errorHandler);
});
return stringHandle.toDartString();
}