postSelectedItem method

Future postSelectedItem()

Post selected item to the server

Implementation

Future postSelectedItem() async {
  assert(selectedItem != null, 'No selected item to post');
  selectedItem!.storageType = controllerMode.storageType;
  await selectedItem!.post();

  //sendNotify();
}