toMap method

Map<String, Object?> toMap()

deprecated

Implementation

Map<String, Object?> toMap() {
  final map = <String, Object?>{};
  if (queryAsMapList != null) {
    map['queryAsMapList'] = queryAsMapList;
  }
  if (androidThreadPriority != null) {
    map['androidThreadPriority'] = androidThreadPriority;
  }
  if (androidThreadCount != null) {
    map['androidThreadCount'] = androidThreadCount;
  }
  if (logLevel != null) {
    map[paramLogLevel] = logLevel;
  }
  return map;
}