ipfs_client_flutter 1.0.7 ipfs_client_flutter: ^1.0.7 copied to clipboard
A flutter client library for the InterPlanetary File System (IPFS) HTTP API.
example/ipfs_client_flutter_example.dart
import 'package:ipfs_client_flutter/ipfs_client_flutter.dart';
Future<void> main() async {
IpfsClient ipfsClient = IpfsClient();
var res = await ipfsClient.mkdir(dir: 'testDir');
var res1 = await ipfsClient.write(
dir: 'testpath3/Simulator.png',
filePath: "[FILE_PATH]/Simulator.png",
fileName: "Simulator.png");
var res2 = await ipfsClient.ls(dir: "testDir");
}