SQLConditionGroup.fromJson constructor
Implementation
factory SQLConditionGroup.fromJson(Map<String, dynamic> json) =>
SQLConditionGroup(
json["or"].toString().toLowerCase() == 'true',
(json["conditions"] as List)
.map((j) => SQLCondition.fromJson(j))
.whereNotNull()
.toList(),
);