bella_baxter_flutter 1.0.0 copy "bella_baxter_flutter: ^1.0.0" to clipboard
bella_baxter_flutter: ^1.0.0 copied to clipboard

retracted[pending analysis]

Flutter integration for the Bella Baxter Dart SDK. Provides FlutterSecureSecretCache — a SecretCache implementation backed by flutter_secure_storage for encrypted on-device secret caching.

bella_baxter_flutter #

pub.dev

Flutter integration for the Bella Baxter Dart SDK.

Provides FlutterSecureSecretCache — a SecretCache implementation backed by flutter_secure_storage for encrypted, on-device secret caching using the OS Keychain (iOS/macOS) or EncryptedSharedPreferences (Android).

Installation #

dependencies:
  bella_baxter: ^1.0.0
  bella_baxter_flutter: ^1.0.0

Usage #

import 'package:bella_baxter/bella_client.dart';
import 'package:bella_baxter_flutter/bella_baxter_flutter.dart';

final client = BellaClient(BellaClientOptions(
  baseUrl: const String.fromEnvironment('BELLA_BAXTER_URL'),
  apiKey:  const String.fromEnvironment('BELLA_BAXTER_API_KEY'),
  cache:   FlutterSecureSecretCache(),
));

// Secrets are fetched once and cached to the device keychain.
// Subsequent calls return the cached value until invalidated.
final secrets = await client.getSecrets(environmentId: 'my-env-id');

Platform Support #

Android iOS macOS Web

Web is not supported because flutter_secure_storage requires a platform keystore.

Bella Baxter #

Bella Baxter is a secret management gateway by Cosmic Chimps. One unified API for all your secret providers — Vault, AWS Secrets Manager, Azure Key Vault, and GCP Secret Manager.

0
likes
0
points
108
downloads

Publisher

verified publisherbella-baxter.io

Weekly Downloads

Flutter integration for the Bella Baxter Dart SDK. Provides FlutterSecureSecretCache — a SecretCache implementation backed by flutter_secure_storage for encrypted on-device secret caching.

Homepage
Repository (GitHub)
View/report issues

Topics

#secrets #vault #configuration #security #flutter

License

(pending) (license)

Dependencies

bella_baxter, flutter, flutter_secure_storage

More

Packages that depend on bella_baxter_flutter