snapd 0.7.5
snapd: ^0.7.5 copied to clipboard
Provides a client to access snapd, which allows you to manage, search and install snaps on a Linux system.
// ignore_for_file: avoid_print
import 'package:snapd/snapd.dart';
Future<void> main(List<String> args) async {
final client = SnapdClient(socketPath: '/tmp/http.sock');
await client.changePassphrase('foo', 'pässwörd');
client.close();
}