language property

Language get language

Get the language of the product.

The returned Language may be empty when no language is applicable to the product type.

Returns

  • A Language describing the product language; may represent "no language" when empty.

Implementation

Language get language {
  final OperationResult resultString = objectMethod(
    pointerId,
    'ContentStoreItem',
    'getLanguage',
  );

  return Language.fromJson(resultString['result']);
}