UpdateEntityOption.fromMap constructor
- Map map
map => UpdateEntityOption
Implementation
UpdateEntityOption.fromMap(Map map)
: assert(map != null,
'Construct a UpdateEntityOption,The parameter map cannot be null !'),
super.fromMap(map) {
entityName = map['entityName'];
entityDesc = map['entityDesc'];
customColumns = map['customColumns'] == null ? null :
map['customColumns'] as Map<String, String>;
}