countUrlTranslations property

int get countUrlTranslations

Get number of url translations in this alert.

Returns

  • Number of url translations.

Throws

  • An exception if it fails.

Implementation

int get countUrlTranslations {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTAlert',
    'getCountUrlTranslations',
  );

  return resultString['result'];
}