fromMap method
deprecated
Implementation
void fromMap(Map<String, Object?> map) {
final dynamic queryAsMapList = map['queryAsMapList'];
if (queryAsMapList is bool) {
this.queryAsMapList = queryAsMapList;
}
final dynamic androidThreadPriority = map['androidThreadPriority'];
if (androidThreadPriority is int) {
this.androidThreadPriority = androidThreadPriority;
}
final dynamic androidThreadCount = map['androidThreadCount'];
if (androidThreadCount is int) {
this.androidThreadCount = androidThreadCount;
}
final dynamic logLevel = map[paramLogLevel];
if (logLevel is int) {
this.logLevel = logLevel;
}
}