at_persistence_spec 2.0.14 at_persistence_spec: ^2.0.14 copied to clipboard
A Dart library containing abstract classes that defines what an implementation of the persistence layer is responsible for. This can be used to guide implementation of other persistence solutions for [...]
import 'package:at_persistence_spec/at_persistence_spec.dart';
class MyKeyStore implements Keystore {
@override
Future? get(key) {
return null;
}
}