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

A file-based YAML storage backend for Portico Auth with automatic synchronization.

example/main.dart

import 'dart:io';
import 'package:portico_auth_storage_yaml/src/io/atomic_file_writer.dart';

void main() async {
  final file = File('manual_test.yaml');
  final writer = AtomicFileWriter(file);
  await writer.writeString('verified: true\n');
  print('File written. Content: ${await file.readAsString()}');
  await file.delete();
}
1
likes
160
points
111
downloads

Publisher

verified publishermcdole.org

Weekly Downloads

A file-based YAML storage backend for Portico Auth with automatic synchronization.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

crypto, equatable, json_annotation, meta, path, portico_auth_credentials, portico_auth_roles, portico_auth_tokens, yaml

More

Packages that depend on portico_auth_storage_yaml