PublicAppConfig constructor

const PublicAppConfig({
  1. required String appId,
  2. required String appKey,
  3. required String slug,
  4. required String name,
  5. String? storeUrl,
  6. String? storeKind,
  7. String? iconUrl,
  8. required bool allowPublic,
  9. required List<FeedbackPlatform> allowedPlatforms,
  10. required int maxAttachmentBytes,
  11. required bool allowAnonymousRoadmap,
  12. required bool allowAnonymousVote,
  13. required bool allowAnonymousFeedback,
  14. required bool allowAnonymousChangelog,
  15. 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,
});