at_persistence_spec 1.0.1+2
at_persistence_spec: ^1.0.1+2 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;
}
}