BMFMapPoi.fromMap constructor
- Map map
map => BMFMapPoi
Implementation
BMFMapPoi.fromMap(Map map)
: assert(map != null,
'Construct a BMFMapPoi,The parameter map cannot be null') {
text = map['text'];
pt = map['pt'] == null ? null : BMFCoordinate.fromMap(map['pt']);
uid = map['uid'];
}