getAllowOffboardServiceOnExtraChargedNetwork static method
- ServiceGroupType serviceType
Check if the given service type is allowed on the extra charged network.
Parameters
- IN serviceType The service type, ServiceGroupType object
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'];
}