servicesIds property

List<int> get servicesIds

Retrieve a list of service IDs used within the application.

Returns

  • A list of integer IDs representing the services.

Implementation

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

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