name property

String get name

Get the name of the associated product.

The name is automatically translated based on the interface language.

Returns

  • The name of the product

Throws

  • An exception if it fails.

Implementation

String get name {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'ContentStoreItem',
    'getName',
  );

  return resultString['result'];
}