name property

String get name

Get the name of the associated product.

The name is automatically translated based on SdkSettings.language.

Returns

  • The localized name of the product.

Implementation

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

  return resultString['result'];
}