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

Implementation

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

  return resultString['result'];
}