commitIpfsPreferences method

Future<bool> commitIpfsPreferences(
  1. String l
)

Implementation

Future<bool> commitIpfsPreferences(String l) async {
  //conv into binary
  if (db == null) return false;
  dataPushedDisk += l.length;
  await _ipfsCapBox.put('ipfsPrefs', l);
  return true;
}