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
 
Implementation
String get name {
  final OperationResult resultString = objectMethod(
    pointerId,
    'ContentStoreItem',
    'getName',
  );
  return resultString['result'];
}