fileNeed method
Implementation
void fileNeed(
String innerPath, {
int timeout = 300,
MessageCallback? callback,
}) =>
ZeroNet.instance.cmd(
ZeroNetCmd.fileNeed,
params: {
'inner_path': innerPath,
'timeout': timeout,
},
callback: callback ?? onMessage,
);