BMFCityListInfo.fromMap constructor

BMFCityListInfo.fromMap(
  1. Map map
)

map => BMFCityListInfo

Implementation

BMFCityListInfo.fromMap(Map map)
    : assert(map != null,
          'Construct a BMFCityListInfo,The parameter map cannot be null !') {
  city = map['city'];
  count = map['count'];
}