getPlugUUID method

Future getPlugUUID()

Implementation

Future getPlugUUID() async {
    var local;
  try{
      local = await controller!.get(':Local:plugin');

  } on StorageException {
      print("':Local:plugin' doesn't exist in storage'===========");
//        print("Waiting ':Local:plugin'===========");
//        registerListener(Listener.pluginLocal,':Local:plugin');
//
//        try{
//            List<Event> e = await Listener.pluginLocal.getNumEvents(1,5);
//            print("Length of the Event ${e.length}");
//            if (e.length > 0) {
//              getPlugUUID();
//            }
//        }catch(e){
//          print(e);
//        }
   }

  return await local.getChildNodesCsv();
}