shena_maat 0.1.1
shena_maat: ^0.1.1 copied to clipboard
Wires shena filesystem storage into the Maat framework.
example/example.dart
import 'package:shena_maat/shena_maat.dart';
Future<void> main() async {
final disk = Storage.fake();
await disk.put('hello.txt', 'Hello'.codeUnits);
Storage.restore();
}