optionalHelpFuture method

Future<Message> optionalHelpFuture(
  1. String directory,
  2. String title, {
  3. String? address,
})

Implementation

Future<Message> optionalHelpFuture(
  String directory,
  String title, {
  String? address,
}) async {
  var resultStr = await ZeroNet.instance.cmdFuture(
    ZeroNetCmd.optionalHelp,
    params: {
      'directory': directory,
      'title': title,
      'address': address,
    },
  );
  return resultStr.message!;
}