countUrlTranslations property

int get countUrlTranslations

Number of URL translations available for this alert.

Returns

  • int: Count of URL translations.

See also:

Implementation

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

  return resultString['result'];
}