getServicesIds static method

List<int> getServicesIds()

Retrieve a list of service IDs used within the application.

Returns

  • A list of integer IDs representing the services.

Throws:

  • An exception if it fails.

Implementation

static List<int> getServicesIds() {
  final OperationResult resultString = staticMethod(
    'Debug',
    'getServicesIds',
  );

  return List<int>.from(resultString['result']);
}