getAllowOffboardServiceOnExtraChargedNetwork static method

bool getAllowOffboardServiceOnExtraChargedNetwork(
  1. ServiceGroupType serviceType
)

Returns whether a service group type is allowed on metered (extra-charged) networks.

Parameters

Returns

  • bool: true when the service type is allowed on metered networks.

Also see:

Implementation

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

  return resultString['result'];
}