optionalFileInfoFuture method

Future<Message> optionalFileInfoFuture(
  1. String innerPath
)

Implementation

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