项目文件夹

文件
wehub-resource-sync bb087aad19
CI / format (push) Failing after 2s
CI / packaging (push) Failing after 0s
CI / test (push) Failing after 3s
chore: import upstream snapshot with attribution
2026-07-13 11:58:56 +08:00

17 行
435 B
Dart

import 'package:dart_mappable/dart_mappable.dart';
part 'cached_apk_provider_param.mapper.dart';
@MappableClass()
class CachedApkProviderParam with CachedApkProviderParamMappable {
final bool includeSystemApps;
final bool onlyAppsWithLaunchIntent;
bool selectMultipleApps;
CachedApkProviderParam({
required this.includeSystemApps,
required this.onlyAppsWithLaunchIntent,
this.selectMultipleApps = false,
});
}