load index info
Future<List<Idex>> getAllIndex()async{ final col=await fStore.collection(consts.classCol).get(); return col.docs.map((e) => Idex.fromDoc(e)).toList(); }