chapterName property

String get chapterName

Get the product chapter name translated to interface language.

Relevant for ContentType.roadMap items, where large countries are split in multiple downloadable pieces. All items from the same chapter share the same chapter name. The value is empty when the item is not a road map item or when the country is not split.

Returns

  • The chapter name of the product, or an empty string when not applicable.

Implementation

String get chapterName {
  final OperationResult resultString = objectMethod(
    pointerId,
    'ContentStoreItem',
    'getChapterName',
  );

  return resultString['result'];
}