optionalFileInfoFuture method
Implementation
Future<Message> optionalFileInfoFuture(
String innerPath,
) async {
var resultStr = await ZeroNet.instance.cmdFuture(
ZeroNetCmd.optionalFileInfo,
params: {
'inner_path': innerPath,
},
);
return resultStr.message!;
}