type property
The local item type.
Implementation
LocalItemType get type {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_LocalItem_getType(
_handle,
errorHandler,
);
});
return LocalItemType._fromCoreValue(
coreValue,
);
}