asDataMap property

Map<String, DataFace> get asDataMap

Devuelve un Map con los attributos del objeto

Implementation

Map<String, DataFace> get asDataMap {
  Map<String, DataFace> r = {};
  for (var x in asDataList) {
    r[x.name] = x;
  }
  return r;
}