countDescriptionTextTranslations property

int get countDescriptionTextTranslations

Get number of description text translations in this alert.

Returns

  • Number of description text translations.

Throws

  • An exception if it fails.

Implementation

int get countDescriptionTextTranslations {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTAlert',
    'getCountDescriptionTextTranslations',
  );

  return resultString['result'];
}