EntityInfo.fromMap constructor
- Map map
Implementation
EntityInfo.fromMap(Map map) : assert(map != null) {
entityName = map['entityName'];
entityDesc = map['entityDesc'];
modifyTime = map['modifyTime'];
createTime = map['createTime'];
customColumns = map['customColumns'] == null
? null
: Map<String, String>.from(map['customColumns']);
latestLocation = map['latestLocation'] == null
? null
: LatestLocation.fromMap(map['latestLocation']);
}