at_persistence_spec 2.0.0
at_persistence_spec: ^2.0.0 copied to clipboard
at_persistence_spec is the Specification for the persistence layer implementation of @protocol development.
example/main.dart
import 'package:at_persistence_spec/at_persistence_spec.dart';
class MyKeyStore implements Keystore {
@override
Future? get(key) {
return null;
}
}