countUrlTranslations property

int get countUrlTranslations

Get number of url translations in this alert.

Returns

  • Number of url translations.

Implementation

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

  return resultString['result'];
}