culture property

String culture

The culture (language and country) of the portal item.

Implementation

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