BMFIndoorPlanNode.fromMap constructor

BMFIndoorPlanNode.fromMap(
  1. Map map
)

map => BMFIndoorPlanNode

Implementation

BMFIndoorPlanNode.fromMap(Map map)
    : assert(map != null,
          'Construct a BMFIndoorPlanNode,The parameter map cannot be null !') {
  floor = map['floor'];
  pt = map['pt'] == null ? null : BMFCoordinate.fromMap(map['pt']);
}