FeedJar

Flutter SDK

The feedjar_sdk package lives in feedjar-sdk-flutter. It matches iOS/Android behaviour:FeedJar.configure, FeedJar.submit, FeedJar.listFeedback, FeedbackType (with featureRequest alias), and the same support-email validation before the network call.

Add to pubspec

Published on pub.dev:

dependencies:
  feedjar_sdk: ^0.1.0

Local monorepo path while developing:

dependencies:
  feedjar_sdk:
    path: ../feedjar-sdk-flutter

Usage

The production API URL is embedded in the SDK — pass only your fjr_… key.

import 'package:feedjar_sdk/feedjar_sdk.dart';

FeedJar.configure('fjr_...');

await FeedJar.submit(
  type: FeedbackType.featureRequest,
  message: 'Landscape mode',
  email: 'user@example.com',
);

HTTP reference: Feedback API.