floors property

List<MPFloor> floors

Get a list of the floors in the building

Implementation

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