PublicAppConfig constructor
- required String appId,
- required String appKey,
- required String slug,
- required String name,
- String? storeUrl,
- String? storeKind,
- String? iconUrl,
- required bool allowPublic,
- required List<
FeedbackPlatform> allowedPlatforms, - required int maxAttachmentBytes,
- required bool allowAnonymousRoadmap,
- required bool allowAnonymousVote,
- required bool allowAnonymousFeedback,
- required bool allowAnonymousChangelog,
- required SdkAppearance sdk,
Creates a PublicAppConfig instance.
Implementation
const PublicAppConfig({
required this.appId,
required this.appKey,
required this.slug,
required this.name,
this.storeUrl,
this.storeKind,
this.iconUrl,
required this.allowPublic,
required this.allowedPlatforms,
required this.maxAttachmentBytes,
required this.allowAnonymousRoadmap,
required this.allowAnonymousVote,
required this.allowAnonymousFeedback,
required this.allowAnonymousChangelog,
required this.sdk,
});