chapterName property
Get the product chapter name translated to interface language.
Relevant for ContentType.roadMap items, as large countries are split in multiple items. All the items from a country have the same chapterName. It is empty if the country is not split into multiple items or if the item is not a road map item.
Items with same chapter name are considered to be part of the same group.
Returns
- The chapter name of the product
Throws
- An exception if it fails.
Implementation
String get chapterName {
final OperationResult resultString = objectMethod(
_pointerId,
'ContentStoreItem',
'getChapterName',
);
return resultString['result'];
}