Misar Docs
MisarMailMisar.BlogMisarReachMisarPostMisar.DevMisar PlatformMisar IdentityMisar Posts API
Sdks

Flutter SDK

Misar.Dev for Flutter — planned. Use the Dart SDK in Flutter apps today.

A dedicated Flutter package for Misar.Dev is planned but not yet released.

The Flutter SDK is in early development and not yet published. In the meantime, Flutter apps can use the Dart SDK today — it works in any Dart or Flutter project.

Use the Dart SDK in Flutter

Add misar_dev to your pubspec.yaml and run flutter pub get:

dependencies:
  misar_dev: ^1.0.0
import 'package:misar_dev/misar_dev.dart';

final client = MisarDevClient(
  apiKey: 'mdk_your_api_key',
  baseUrl: 'https://api.misar.io/dev',
);

See the Dart SDK reference for the full list of supported resources and error handling.