dirListFuture method
Return: List of file and directory names
Implementation
Future<MessageOrError> dirListFuture(
String innerPath, {
bool stats = false,
}) async {
var resultsStr = await ZeroNet.instance.cmdFuture(
ZeroNetCmd.dirList,
params: {
'inner_path': innerPath,
'stats': stats,
},
);
return resultsStr.toMsgOrErr;
}