getAllIndex method

Future<List<Idex>> getAllIndex()

load index info

Implementation

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