toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (andGroup != null) 'andGroup': andGroup!.toJson(),
      if (filter != null) 'filter': filter!.toJson(),
      if (notExpression != null) 'notExpression': notExpression!.toJson(),
      if (orGroup != null) 'orGroup': orGroup!.toJson(),
    };