12 lines
229 B
Dart
12 lines
229 B
Dart
import '../app/app_store_policy.dart';
|
|
|
|
bool shouldBlockEmbeddedAgentLaunch({
|
|
required bool isAppleHost,
|
|
bool? enabled,
|
|
}) {
|
|
return shouldApplyAppleAppStorePolicy(
|
|
isAppleHost: isAppleHost,
|
|
enabled: enabled,
|
|
);
|
|
}
|