getAllowOffboardServiceOnExtraChargedNetwork static method

bool getAllowOffboardServiceOnExtraChargedNetwork(
  1. ServiceGroupType serviceType
)

Check if the given service type is allowed on the extra charged network.

Parameters

Returns

  • True if the service is allowed on the extra charged network, false otherwise

Throws

  • An exception if it fails.

Implementation

static bool getAllowOffboardServiceOnExtraChargedNetwork(
  ServiceGroupType serviceType,
) {
  final OperationResult resultString = objectMethod(
    0,
    'SdkSettings',
    'getAllowOffboardServiceOnExtraChargedNetwork',
    args: serviceType.id,
  );

  return resultString['result'];
}