Get a list of the floors in the building
List<MPFloor> get floors { List<MPFloor> list = List.from(_floors!.values); list.sort((a, b) => a.compareTo(b)); return list; }